namruto77 commited on
Commit
d323f57
·
verified ·
1 Parent(s): 3343043

Upload VeriRender benchmark dataset

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +69 -0
  2. benchmark.yaml +92 -0
  3. consistent/data_visualization/sample_00051/clean.png +3 -0
  4. consistent/data_visualization/sample_00051/metadata.json +37 -0
  5. consistent/data_visualization/sample_00051/prompt.md +94 -0
  6. consistent/data_visualization/sample_00051/spec.py +29 -0
  7. consistent/data_visualization/sample_00052/clean.png +3 -0
  8. consistent/data_visualization/sample_00052/metadata.json +51 -0
  9. consistent/data_visualization/sample_00052/prompt.md +102 -0
  10. consistent/data_visualization/sample_00052/spec.py +37 -0
  11. consistent/data_visualization/sample_00053/clean.png +3 -0
  12. consistent/data_visualization/sample_00053/metadata.json +44 -0
  13. consistent/data_visualization/sample_00053/prompt.md +98 -0
  14. consistent/data_visualization/sample_00053/spec.py +33 -0
  15. consistent/data_visualization/sample_00054/clean.png +3 -0
  16. consistent/data_visualization/sample_00054/metadata.json +44 -0
  17. consistent/data_visualization/sample_00054/prompt.md +98 -0
  18. consistent/data_visualization/sample_00054/spec.py +33 -0
  19. consistent/data_visualization/sample_00055/clean.png +3 -0
  20. consistent/data_visualization/sample_00055/metadata.json +51 -0
  21. consistent/data_visualization/sample_00055/prompt.md +102 -0
  22. consistent/data_visualization/sample_00055/spec.py +37 -0
  23. consistent/data_visualization/sample_00056/clean.png +3 -0
  24. consistent/data_visualization/sample_00056/metadata.json +44 -0
  25. consistent/data_visualization/sample_00056/prompt.md +98 -0
  26. consistent/data_visualization/sample_00056/spec.py +33 -0
  27. consistent/data_visualization/sample_00057/clean.png +3 -0
  28. consistent/data_visualization/sample_00057/metadata.json +37 -0
  29. consistent/data_visualization/sample_00057/prompt.md +94 -0
  30. consistent/data_visualization/sample_00057/spec.py +29 -0
  31. consistent/data_visualization/sample_00058/clean.png +3 -0
  32. consistent/data_visualization/sample_00058/metadata.json +51 -0
  33. consistent/data_visualization/sample_00058/prompt.md +102 -0
  34. consistent/data_visualization/sample_00058/spec.py +37 -0
  35. consistent/data_visualization/sample_00059/clean.png +3 -0
  36. consistent/data_visualization/sample_00059/metadata.json +37 -0
  37. consistent/data_visualization/sample_00059/prompt.md +94 -0
  38. consistent/data_visualization/sample_00059/spec.py +29 -0
  39. consistent/data_visualization/sample_00060/clean.png +3 -0
  40. consistent/data_visualization/sample_00060/metadata.json +44 -0
  41. consistent/data_visualization/sample_00060/prompt.md +98 -0
  42. consistent/data_visualization/sample_00060/spec.py +33 -0
  43. consistent/data_visualization/sample_00121/clean.png +3 -0
  44. consistent/data_visualization/sample_00121/metadata.json +39 -0
  45. consistent/data_visualization/sample_00121/prompt.md +89 -0
  46. consistent/data_visualization/sample_00121/spec.py +24 -0
  47. consistent/data_visualization/sample_00122/clean.png +3 -0
  48. consistent/data_visualization/sample_00122/metadata.json +44 -0
  49. consistent/data_visualization/sample_00122/prompt.md +91 -0
  50. consistent/data_visualization/sample_00122/spec.py +26 -0
README.md ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - visual-question-answering
5
+ - image-to-text
6
+ language:
7
+ - en
8
+ tags:
9
+ - vision-language-model
10
+ - benchmark
11
+ - causal-reasoning
12
+ - scientific-visualization
13
+ - multimodal
14
+ pretty_name: VeriRender
15
+ size_categories:
16
+ - n<1K
17
+ configs:
18
+ - config_name: default
19
+ data_files:
20
+ - split: inconsistent
21
+ path: "inconsistent/**"
22
+ - split: consistent
23
+ path: "consistent/**"
24
+ ---
25
+
26
+ # VeriRender Benchmark Dataset
27
+
28
+ Causal consistency verification samples for Vision-Language Models.
29
+
30
+ ## Layout
31
+
32
+ ```text
33
+ manifest.jsonl ← canonical index (one row per sample)
34
+ benchmark.yaml ← config used to generate this release
35
+ inconsistent/{domain}/{sample_id}/ ← corrupted evaluation samples
36
+ consistent/{domain}/{sample_id}/ ← negative controls (clean images)
37
+ ```
38
+
39
+ ## Splits
40
+
41
+ | Split | Description | Eval image |
42
+ |---|---|---|
43
+ | `inconsistent` | Symbolic spec is correct; image has a perturbation | `corrupted.png` |
44
+ | `consistent` | Symbolic spec matches the clean image | `clean.png` |
45
+
46
+ ## Sample folder
47
+
48
+ Each sample contains:
49
+ - `spec.py` / `spec.tex` / `spec.txt` — symbolic generator (unchanged for inconsistent samples)
50
+ - `clean.png` — faithful rendering
51
+ - `corrupted.png` — perturbed rendering (inconsistent only)
52
+ - `prompt.md` — VLM evaluation prompt
53
+ - `metadata.json` — full provenance
54
+
55
+ ## Loading
56
+
57
+ ```python
58
+ import json
59
+ from pathlib import Path
60
+
61
+ root = Path(".")
62
+ rows = [json.loads(line) for line in (root / "manifest.jsonl").open()]
63
+ ```
64
+
65
+ Or rebuild the manifest after edits:
66
+
67
+ ```bash
68
+ python scripts/build_manifest.py
69
+ ```
benchmark.yaml ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ benchmark:
2
+ n_per_spec: 10
3
+ consistent_mode: per_family # none | per_family | per_spec
4
+
5
+ domains:
6
+ data_visualization:
7
+ representation_type: python
8
+ families:
9
+ heatmap:
10
+ base_seed: 1000
11
+ perturbations:
12
+ - colormap_inversion
13
+ - axis_swap
14
+ - sign_inversion
15
+ - amplitude_scale
16
+ - symmetry_mismatch
17
+ line_plot:
18
+ base_seed: 2000
19
+ perturbations:
20
+ - sign_inversion
21
+ - phase_shift
22
+ - axis_swap
23
+ - amplitude_scale
24
+ - frequency_doubling
25
+ - dc_offset
26
+ polar:
27
+ base_seed: 3000
28
+ perturbations:
29
+ - sign_inversion
30
+ - wrong_petal_count
31
+ - symmetry_mismatch
32
+ bar_chart:
33
+ base_seed: 4000
34
+ perturbations:
35
+ - sign_inversion
36
+ - amplitude_scale
37
+ - bar_order_swap
38
+ scatter:
39
+ base_seed: 5000
40
+ perturbations:
41
+ - sign_inversion
42
+ - dc_offset
43
+
44
+ mathematical_plots:
45
+ representation_type: latex
46
+ families:
47
+ sinusoid:
48
+ base_seed: 6000
49
+ perturbations:
50
+ - sign_inversion
51
+ - amplitude_scale
52
+ - frequency_doubling
53
+ - phase_shift
54
+ - dc_offset
55
+ polynomial:
56
+ base_seed: 7000
57
+ perturbations:
58
+ - sign_inversion
59
+ - dc_offset
60
+ - coefficient_scale
61
+ rose_formula:
62
+ base_seed: 8000
63
+ perturbations:
64
+ - sign_inversion
65
+ - wrong_petal_count
66
+ - symmetry_mismatch
67
+
68
+ geometry_physics:
69
+ representation_type: physics_spec
70
+ families:
71
+ projectile:
72
+ base_seed: 9000
73
+ perturbations:
74
+ - sign_inversion
75
+ - wrong_gravity
76
+ - wrong_launch_angle
77
+ harmonic_oscillator:
78
+ base_seed: 10000
79
+ perturbations:
80
+ - sign_inversion
81
+ - amplitude_scale
82
+ - frequency_doubling
83
+ - phase_shift
84
+
85
+ fractals_procedural_geometry:
86
+ representation_type: l_system
87
+ families:
88
+ l_system:
89
+ base_seed: 11000
90
+ perturbations:
91
+ - wrong_iteration_depth
92
+ - wrong_angle
consistent/data_visualization/sample_00051/clean.png ADDED

Git LFS Details

  • SHA256: e1b182a361eed5a8ef839cbc52d24c13ab010ec571a98febf995d19cf6cf1875
  • Pointer size: 130 Bytes
  • Size of remote file: 29.3 kB
consistent/data_visualization/sample_00051/metadata.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sample_id": "sample_00051",
3
+ "split": "consistent",
4
+ "path": "consistent/data_visualization/sample_00051",
5
+ "domain": "data_visualization",
6
+ "family": "heatmap",
7
+ "seed": 1900,
8
+ "consistent": true,
9
+ "perturbation": {
10
+ "type": "none",
11
+ "description": ""
12
+ },
13
+ "symbolic_spec": {
14
+ "representation_type": "python",
15
+ "filename": "spec.py",
16
+ "params": {
17
+ "seed": 1900,
18
+ "size": 44,
19
+ "n_blobs": 1,
20
+ "blobs": [
21
+ {
22
+ "cx": 0.61085577881573,
23
+ "cy": 1.5174101799883126,
24
+ "sx": 1.0371975800132418,
25
+ "sy": 0.6797807725608512,
26
+ "amp": -1.554387638420929
27
+ }
28
+ ],
29
+ "colormap": "magma"
30
+ }
31
+ },
32
+ "files": {
33
+ "symbolic_spec": "spec.py",
34
+ "clean_image": "clean.png",
35
+ "prompt": "prompt.md"
36
+ }
37
+ }
consistent/data_visualization/sample_00051/prompt.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # VeriRender — Causal Consistency Evaluation
2
+ **Sample:** `sample_00051`
3
+
4
+ > **Before sending:** attach `clean.png` from this folder as the image,
5
+ > then paste everything below the horizontal rule into the chat.
6
+
7
+ ---
8
+
9
+ You are evaluating a scientific visualization for **causal consistency**.
10
+
11
+ The following specification is the **symbolic generator** — it fully specifies
12
+ what the output plot should look like:
13
+
14
+ ```python
15
+ import numpy as np
16
+ import matplotlib.pyplot as plt
17
+
18
+ # ── Parameters ─────────────────────────────────────────────────────────────
19
+ seed = 1900
20
+ size = 44
21
+ colormap = "magma"
22
+ n_blobs = 1
23
+
24
+ # ── Data ────────────────────────────────────────────────────────────────────
25
+ x = np.linspace(-3.0, 3.0, size)
26
+ y = np.linspace(-2.0, 4.0, size)
27
+ X, Y = np.meshgrid(x, y)
28
+ Z = np.zeros((size, size))
29
+
30
+ Z += -1.554388 * np.exp(
31
+ -((X - 0.610856)**2 / (2 * 1.037198**2)
32
+ + (Y - 1.517410)**2 / (2 * 0.679781**2))
33
+ )
34
+
35
+ # ── Plot ────────────────────────────────────────────────────────────────────
36
+ fig, ax = plt.subplots(figsize=(6, 5))
37
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
38
+ fig.colorbar(im, ax=ax, label="Intensity")
39
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
40
+ ax.set_xlabel("X")
41
+ ax.set_ylabel("Y")
42
+ fig.tight_layout()
43
+ plt.show()
44
+ ```
45
+
46
+ **Domain:** Data visualization
47
+ **Plot family:** 2D heatmap (matplotlib `pcolormesh`)
48
+
49
+ I am showing you an image that claims to be the output of this generator.
50
+
51
+ ---
52
+
53
+ ## Your Task
54
+
55
+ 1. Read the specification carefully. Reason about what the plot should look like
56
+ (shape, orientation, color mapping, symmetry, value signs, etc.).
57
+ 2. Examine the attached image.
58
+ 3. Decide whether the image is **causally consistent** with the generator.
59
+
60
+ If the image is **not** consistent, classify the inconsistency using exactly one
61
+ of these labels:
62
+
63
+ | Label | Meaning |
64
+ |---|---|
65
+ | `colormap_inversion` | The colormap used is different from what the code specifies |
66
+ | `axis_swap` | Axes or data dimensions are transposed or mirrored |
67
+ | `sign_inversion` | Values are negated — peaks and troughs (or bar directions) are swapped |
68
+ | `amplitude_scale` | The value scale is wrong — the colorbar, y-axis range, or bar value labels do not match the formula's amplitudes |
69
+ | `phase_shift` | The pattern is shifted from its correct position |
70
+ | `frequency_doubling` | The number of oscillations or cycles is wrong |
71
+ | `dc_offset` | The curves or point cloud are shifted away from their correct baseline |
72
+ | `wrong_petal_count` | The number of petals/lobes differs from what the formula produces |
73
+ | `symmetry_mismatch` | The image contains asymmetry that the code cannot produce |
74
+ | `bar_order_swap` | Two bars have had their heights swapped — a bar's value label contradicts the code's heights list |
75
+ | `coefficient_scale` | Polynomial coefficients are scaled but the formula in the spec is unchanged |
76
+ | `wrong_gravity` | Trajectory uses a different gravitational constant than the spec |
77
+ | `wrong_launch_angle` | Trajectory uses a different launch angle than the spec |
78
+ | `wrong_iteration_depth` | L-system rendered with a different iteration count than the spec |
79
+ | `wrong_angle` | L-system rendered with a different turn angle than the spec |
80
+
81
+ ---
82
+
83
+ ## Response Format
84
+
85
+ Respond with **only** this JSON object and nothing else:
86
+
87
+ ```json
88
+ {
89
+ "consistent": true | false,
90
+ "bug_type": "<one label from the table above, or null if consistent>",
91
+ "confidence": "low | medium | high",
92
+ "reasoning": "<1–3 sentences: what you expected vs. what you see>"
93
+ }
94
+ ```
consistent/data_visualization/sample_00051/spec.py ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import matplotlib.pyplot as plt
3
+
4
+ # ── Parameters ─────────────────────────────────────────────────────────────
5
+ seed = 1900
6
+ size = 44
7
+ colormap = "magma"
8
+ n_blobs = 1
9
+
10
+ # ── Data ────────────────────────────────────────────────────────────────────
11
+ x = np.linspace(-3.0, 3.0, size)
12
+ y = np.linspace(-2.0, 4.0, size)
13
+ X, Y = np.meshgrid(x, y)
14
+ Z = np.zeros((size, size))
15
+
16
+ Z += -1.554388 * np.exp(
17
+ -((X - 0.610856)**2 / (2 * 1.037198**2)
18
+ + (Y - 1.517410)**2 / (2 * 0.679781**2))
19
+ )
20
+
21
+ # ── Plot ────────────────────────────────────────────────────────────────────
22
+ fig, ax = plt.subplots(figsize=(6, 5))
23
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
24
+ fig.colorbar(im, ax=ax, label="Intensity")
25
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
26
+ ax.set_xlabel("X")
27
+ ax.set_ylabel("Y")
28
+ fig.tight_layout()
29
+ plt.show()
consistent/data_visualization/sample_00052/clean.png ADDED

Git LFS Details

  • SHA256: 6d02c560c4ea9c8e81d7ec0b08980b992eb01d6a900ed276e11911dd080d9487
  • Pointer size: 130 Bytes
  • Size of remote file: 29.9 kB
consistent/data_visualization/sample_00052/metadata.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sample_id": "sample_00052",
3
+ "split": "consistent",
4
+ "path": "consistent/data_visualization/sample_00052",
5
+ "domain": "data_visualization",
6
+ "family": "heatmap",
7
+ "seed": 1901,
8
+ "consistent": true,
9
+ "perturbation": {
10
+ "type": "none",
11
+ "description": ""
12
+ },
13
+ "symbolic_spec": {
14
+ "representation_type": "python",
15
+ "filename": "spec.py",
16
+ "params": {
17
+ "seed": 1901,
18
+ "size": 27,
19
+ "n_blobs": 3,
20
+ "blobs": [
21
+ {
22
+ "cx": 0.00928677522485355,
23
+ "cy": 2.7444061610545893,
24
+ "sx": 1.2776281321771092,
25
+ "sy": 0.6298019532754228,
26
+ "amp": -1.9094671824014697
27
+ },
28
+ {
29
+ "cx": -0.03696748795995486,
30
+ "cy": 2.2307181299603127,
31
+ "sx": 0.7523102453039284,
32
+ "sy": 1.06923728631266,
33
+ "amp": 0.7146535881166725
34
+ },
35
+ {
36
+ "cx": -0.9405754630883605,
37
+ "cy": 0.9179024703123635,
38
+ "sx": 0.5041846480212553,
39
+ "sy": 0.5084477268719658,
40
+ "amp": -1.8573569202593092
41
+ }
42
+ ],
43
+ "colormap": "plasma"
44
+ }
45
+ },
46
+ "files": {
47
+ "symbolic_spec": "spec.py",
48
+ "clean_image": "clean.png",
49
+ "prompt": "prompt.md"
50
+ }
51
+ }
consistent/data_visualization/sample_00052/prompt.md ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # VeriRender — Causal Consistency Evaluation
2
+ **Sample:** `sample_00052`
3
+
4
+ > **Before sending:** attach `clean.png` from this folder as the image,
5
+ > then paste everything below the horizontal rule into the chat.
6
+
7
+ ---
8
+
9
+ You are evaluating a scientific visualization for **causal consistency**.
10
+
11
+ The following specification is the **symbolic generator** — it fully specifies
12
+ what the output plot should look like:
13
+
14
+ ```python
15
+ import numpy as np
16
+ import matplotlib.pyplot as plt
17
+
18
+ # ── Parameters ─────────────────────────────────────────────────────────────
19
+ seed = 1901
20
+ size = 27
21
+ colormap = "plasma"
22
+ n_blobs = 3
23
+
24
+ # ── Data ────────────────────────────────────────────────────────────────────
25
+ x = np.linspace(-3.0, 3.0, size)
26
+ y = np.linspace(-2.0, 4.0, size)
27
+ X, Y = np.meshgrid(x, y)
28
+ Z = np.zeros((size, size))
29
+
30
+ Z += -1.909467 * np.exp(
31
+ -((X - 0.009287)**2 / (2 * 1.277628**2)
32
+ + (Y - 2.744406)**2 / (2 * 0.629802**2))
33
+ )
34
+ Z += 0.714654 * np.exp(
35
+ -((X - -0.036967)**2 / (2 * 0.752310**2)
36
+ + (Y - 2.230718)**2 / (2 * 1.069237**2))
37
+ )
38
+ Z += -1.857357 * np.exp(
39
+ -((X - -0.940575)**2 / (2 * 0.504185**2)
40
+ + (Y - 0.917902)**2 / (2 * 0.508448**2))
41
+ )
42
+
43
+ # ── Plot ────────────────────────────────────────────────────────────────────
44
+ fig, ax = plt.subplots(figsize=(6, 5))
45
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
46
+ fig.colorbar(im, ax=ax, label="Intensity")
47
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
48
+ ax.set_xlabel("X")
49
+ ax.set_ylabel("Y")
50
+ fig.tight_layout()
51
+ plt.show()
52
+ ```
53
+
54
+ **Domain:** Data visualization
55
+ **Plot family:** 2D heatmap (matplotlib `pcolormesh`)
56
+
57
+ I am showing you an image that claims to be the output of this generator.
58
+
59
+ ---
60
+
61
+ ## Your Task
62
+
63
+ 1. Read the specification carefully. Reason about what the plot should look like
64
+ (shape, orientation, color mapping, symmetry, value signs, etc.).
65
+ 2. Examine the attached image.
66
+ 3. Decide whether the image is **causally consistent** with the generator.
67
+
68
+ If the image is **not** consistent, classify the inconsistency using exactly one
69
+ of these labels:
70
+
71
+ | Label | Meaning |
72
+ |---|---|
73
+ | `colormap_inversion` | The colormap used is different from what the code specifies |
74
+ | `axis_swap` | Axes or data dimensions are transposed or mirrored |
75
+ | `sign_inversion` | Values are negated — peaks and troughs (or bar directions) are swapped |
76
+ | `amplitude_scale` | The value scale is wrong — the colorbar, y-axis range, or bar value labels do not match the formula's amplitudes |
77
+ | `phase_shift` | The pattern is shifted from its correct position |
78
+ | `frequency_doubling` | The number of oscillations or cycles is wrong |
79
+ | `dc_offset` | The curves or point cloud are shifted away from their correct baseline |
80
+ | `wrong_petal_count` | The number of petals/lobes differs from what the formula produces |
81
+ | `symmetry_mismatch` | The image contains asymmetry that the code cannot produce |
82
+ | `bar_order_swap` | Two bars have had their heights swapped — a bar's value label contradicts the code's heights list |
83
+ | `coefficient_scale` | Polynomial coefficients are scaled but the formula in the spec is unchanged |
84
+ | `wrong_gravity` | Trajectory uses a different gravitational constant than the spec |
85
+ | `wrong_launch_angle` | Trajectory uses a different launch angle than the spec |
86
+ | `wrong_iteration_depth` | L-system rendered with a different iteration count than the spec |
87
+ | `wrong_angle` | L-system rendered with a different turn angle than the spec |
88
+
89
+ ---
90
+
91
+ ## Response Format
92
+
93
+ Respond with **only** this JSON object and nothing else:
94
+
95
+ ```json
96
+ {
97
+ "consistent": true | false,
98
+ "bug_type": "<one label from the table above, or null if consistent>",
99
+ "confidence": "low | medium | high",
100
+ "reasoning": "<1–3 sentences: what you expected vs. what you see>"
101
+ }
102
+ ```
consistent/data_visualization/sample_00052/spec.py ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import matplotlib.pyplot as plt
3
+
4
+ # ── Parameters ─────────────────────────────────────────────────────────────
5
+ seed = 1901
6
+ size = 27
7
+ colormap = "plasma"
8
+ n_blobs = 3
9
+
10
+ # ── Data ────────────────────────────────────────────────────────────────────
11
+ x = np.linspace(-3.0, 3.0, size)
12
+ y = np.linspace(-2.0, 4.0, size)
13
+ X, Y = np.meshgrid(x, y)
14
+ Z = np.zeros((size, size))
15
+
16
+ Z += -1.909467 * np.exp(
17
+ -((X - 0.009287)**2 / (2 * 1.277628**2)
18
+ + (Y - 2.744406)**2 / (2 * 0.629802**2))
19
+ )
20
+ Z += 0.714654 * np.exp(
21
+ -((X - -0.036967)**2 / (2 * 0.752310**2)
22
+ + (Y - 2.230718)**2 / (2 * 1.069237**2))
23
+ )
24
+ Z += -1.857357 * np.exp(
25
+ -((X - -0.940575)**2 / (2 * 0.504185**2)
26
+ + (Y - 0.917902)**2 / (2 * 0.508448**2))
27
+ )
28
+
29
+ # ── Plot ────────────────────────────────────────────────────────────────────
30
+ fig, ax = plt.subplots(figsize=(6, 5))
31
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
32
+ fig.colorbar(im, ax=ax, label="Intensity")
33
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
34
+ ax.set_xlabel("X")
35
+ ax.set_ylabel("Y")
36
+ fig.tight_layout()
37
+ plt.show()
consistent/data_visualization/sample_00053/clean.png ADDED

Git LFS Details

  • SHA256: 3511663a196242383d5b51cceabda90510c911e9bfe36b31ce3e8fdafd0752f0
  • Pointer size: 130 Bytes
  • Size of remote file: 28.9 kB
consistent/data_visualization/sample_00053/metadata.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sample_id": "sample_00053",
3
+ "split": "consistent",
4
+ "path": "consistent/data_visualization/sample_00053",
5
+ "domain": "data_visualization",
6
+ "family": "heatmap",
7
+ "seed": 1902,
8
+ "consistent": true,
9
+ "perturbation": {
10
+ "type": "none",
11
+ "description": ""
12
+ },
13
+ "symbolic_spec": {
14
+ "representation_type": "python",
15
+ "filename": "spec.py",
16
+ "params": {
17
+ "seed": 1902,
18
+ "size": 46,
19
+ "n_blobs": 2,
20
+ "blobs": [
21
+ {
22
+ "cx": -0.7514402191317222,
23
+ "cy": 0.27791857789447594,
24
+ "sx": 0.8174546655531164,
25
+ "sy": 0.6753174765491572,
26
+ "amp": 1.3982386738655987
27
+ },
28
+ {
29
+ "cx": -0.09165976977256385,
30
+ "cy": 1.7892934338324253,
31
+ "sx": 0.5987332538964991,
32
+ "sy": 0.9083335335441174,
33
+ "amp": -1.1228078573248417
34
+ }
35
+ ],
36
+ "colormap": "inferno"
37
+ }
38
+ },
39
+ "files": {
40
+ "symbolic_spec": "spec.py",
41
+ "clean_image": "clean.png",
42
+ "prompt": "prompt.md"
43
+ }
44
+ }
consistent/data_visualization/sample_00053/prompt.md ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # VeriRender — Causal Consistency Evaluation
2
+ **Sample:** `sample_00053`
3
+
4
+ > **Before sending:** attach `clean.png` from this folder as the image,
5
+ > then paste everything below the horizontal rule into the chat.
6
+
7
+ ---
8
+
9
+ You are evaluating a scientific visualization for **causal consistency**.
10
+
11
+ The following specification is the **symbolic generator** — it fully specifies
12
+ what the output plot should look like:
13
+
14
+ ```python
15
+ import numpy as np
16
+ import matplotlib.pyplot as plt
17
+
18
+ # ── Parameters ─────────────────────────────────────────────────────────────
19
+ seed = 1902
20
+ size = 46
21
+ colormap = "inferno"
22
+ n_blobs = 2
23
+
24
+ # ── Data ────────────────────────────────────────────────────────────────────
25
+ x = np.linspace(-3.0, 3.0, size)
26
+ y = np.linspace(-2.0, 4.0, size)
27
+ X, Y = np.meshgrid(x, y)
28
+ Z = np.zeros((size, size))
29
+
30
+ Z += 1.398239 * np.exp(
31
+ -((X - -0.751440)**2 / (2 * 0.817455**2)
32
+ + (Y - 0.277919)**2 / (2 * 0.675317**2))
33
+ )
34
+ Z += -1.122808 * np.exp(
35
+ -((X - -0.091660)**2 / (2 * 0.598733**2)
36
+ + (Y - 1.789293)**2 / (2 * 0.908334**2))
37
+ )
38
+
39
+ # ── Plot ────────────────────────────────────────────────────────────────────
40
+ fig, ax = plt.subplots(figsize=(6, 5))
41
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
42
+ fig.colorbar(im, ax=ax, label="Intensity")
43
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
44
+ ax.set_xlabel("X")
45
+ ax.set_ylabel("Y")
46
+ fig.tight_layout()
47
+ plt.show()
48
+ ```
49
+
50
+ **Domain:** Data visualization
51
+ **Plot family:** 2D heatmap (matplotlib `pcolormesh`)
52
+
53
+ I am showing you an image that claims to be the output of this generator.
54
+
55
+ ---
56
+
57
+ ## Your Task
58
+
59
+ 1. Read the specification carefully. Reason about what the plot should look like
60
+ (shape, orientation, color mapping, symmetry, value signs, etc.).
61
+ 2. Examine the attached image.
62
+ 3. Decide whether the image is **causally consistent** with the generator.
63
+
64
+ If the image is **not** consistent, classify the inconsistency using exactly one
65
+ of these labels:
66
+
67
+ | Label | Meaning |
68
+ |---|---|
69
+ | `colormap_inversion` | The colormap used is different from what the code specifies |
70
+ | `axis_swap` | Axes or data dimensions are transposed or mirrored |
71
+ | `sign_inversion` | Values are negated — peaks and troughs (or bar directions) are swapped |
72
+ | `amplitude_scale` | The value scale is wrong — the colorbar, y-axis range, or bar value labels do not match the formula's amplitudes |
73
+ | `phase_shift` | The pattern is shifted from its correct position |
74
+ | `frequency_doubling` | The number of oscillations or cycles is wrong |
75
+ | `dc_offset` | The curves or point cloud are shifted away from their correct baseline |
76
+ | `wrong_petal_count` | The number of petals/lobes differs from what the formula produces |
77
+ | `symmetry_mismatch` | The image contains asymmetry that the code cannot produce |
78
+ | `bar_order_swap` | Two bars have had their heights swapped — a bar's value label contradicts the code's heights list |
79
+ | `coefficient_scale` | Polynomial coefficients are scaled but the formula in the spec is unchanged |
80
+ | `wrong_gravity` | Trajectory uses a different gravitational constant than the spec |
81
+ | `wrong_launch_angle` | Trajectory uses a different launch angle than the spec |
82
+ | `wrong_iteration_depth` | L-system rendered with a different iteration count than the spec |
83
+ | `wrong_angle` | L-system rendered with a different turn angle than the spec |
84
+
85
+ ---
86
+
87
+ ## Response Format
88
+
89
+ Respond with **only** this JSON object and nothing else:
90
+
91
+ ```json
92
+ {
93
+ "consistent": true | false,
94
+ "bug_type": "<one label from the table above, or null if consistent>",
95
+ "confidence": "low | medium | high",
96
+ "reasoning": "<1–3 sentences: what you expected vs. what you see>"
97
+ }
98
+ ```
consistent/data_visualization/sample_00053/spec.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import matplotlib.pyplot as plt
3
+
4
+ # ── Parameters ─────────────────────────────────────────────────────────────
5
+ seed = 1902
6
+ size = 46
7
+ colormap = "inferno"
8
+ n_blobs = 2
9
+
10
+ # ── Data ────────────────────────────────────────────────────────────────────
11
+ x = np.linspace(-3.0, 3.0, size)
12
+ y = np.linspace(-2.0, 4.0, size)
13
+ X, Y = np.meshgrid(x, y)
14
+ Z = np.zeros((size, size))
15
+
16
+ Z += 1.398239 * np.exp(
17
+ -((X - -0.751440)**2 / (2 * 0.817455**2)
18
+ + (Y - 0.277919)**2 / (2 * 0.675317**2))
19
+ )
20
+ Z += -1.122808 * np.exp(
21
+ -((X - -0.091660)**2 / (2 * 0.598733**2)
22
+ + (Y - 1.789293)**2 / (2 * 0.908334**2))
23
+ )
24
+
25
+ # ── Plot ────────────────────────────────────────────────────────────────────
26
+ fig, ax = plt.subplots(figsize=(6, 5))
27
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
28
+ fig.colorbar(im, ax=ax, label="Intensity")
29
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
30
+ ax.set_xlabel("X")
31
+ ax.set_ylabel("Y")
32
+ fig.tight_layout()
33
+ plt.show()
consistent/data_visualization/sample_00054/clean.png ADDED

Git LFS Details

  • SHA256: 95a9a5238b710a6f43dddb3d38821e3bc7d2fa3e73a12399fce0fd437c1ddd91
  • Pointer size: 130 Bytes
  • Size of remote file: 30.9 kB
consistent/data_visualization/sample_00054/metadata.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sample_id": "sample_00054",
3
+ "split": "consistent",
4
+ "path": "consistent/data_visualization/sample_00054",
5
+ "domain": "data_visualization",
6
+ "family": "heatmap",
7
+ "seed": 1903,
8
+ "consistent": true,
9
+ "perturbation": {
10
+ "type": "none",
11
+ "description": ""
12
+ },
13
+ "symbolic_spec": {
14
+ "representation_type": "python",
15
+ "filename": "spec.py",
16
+ "params": {
17
+ "seed": 1903,
18
+ "size": 30,
19
+ "n_blobs": 2,
20
+ "blobs": [
21
+ {
22
+ "cx": -1.404481930462251,
23
+ "cy": 1.8820338796892844,
24
+ "sx": 1.3392889176301213,
25
+ "sy": 1.3914159508053348,
26
+ "amp": -1.0335510656026674
27
+ },
28
+ {
29
+ "cx": 0.38377916053763617,
30
+ "cy": 1.7687655210580098,
31
+ "sx": 0.6351745477838537,
32
+ "sy": 1.2347606930609019,
33
+ "amp": 1.0472853749795503
34
+ }
35
+ ],
36
+ "colormap": "viridis"
37
+ }
38
+ },
39
+ "files": {
40
+ "symbolic_spec": "spec.py",
41
+ "clean_image": "clean.png",
42
+ "prompt": "prompt.md"
43
+ }
44
+ }
consistent/data_visualization/sample_00054/prompt.md ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # VeriRender — Causal Consistency Evaluation
2
+ **Sample:** `sample_00054`
3
+
4
+ > **Before sending:** attach `clean.png` from this folder as the image,
5
+ > then paste everything below the horizontal rule into the chat.
6
+
7
+ ---
8
+
9
+ You are evaluating a scientific visualization for **causal consistency**.
10
+
11
+ The following specification is the **symbolic generator** — it fully specifies
12
+ what the output plot should look like:
13
+
14
+ ```python
15
+ import numpy as np
16
+ import matplotlib.pyplot as plt
17
+
18
+ # ── Parameters ─────────────────────────────────────────────────────────────
19
+ seed = 1903
20
+ size = 30
21
+ colormap = "viridis"
22
+ n_blobs = 2
23
+
24
+ # ── Data ────────────────────────────────────────────────────────────────────
25
+ x = np.linspace(-3.0, 3.0, size)
26
+ y = np.linspace(-2.0, 4.0, size)
27
+ X, Y = np.meshgrid(x, y)
28
+ Z = np.zeros((size, size))
29
+
30
+ Z += -1.033551 * np.exp(
31
+ -((X - -1.404482)**2 / (2 * 1.339289**2)
32
+ + (Y - 1.882034)**2 / (2 * 1.391416**2))
33
+ )
34
+ Z += 1.047285 * np.exp(
35
+ -((X - 0.383779)**2 / (2 * 0.635175**2)
36
+ + (Y - 1.768766)**2 / (2 * 1.234761**2))
37
+ )
38
+
39
+ # ── Plot ────────────────────────────────────────────────────────────────────
40
+ fig, ax = plt.subplots(figsize=(6, 5))
41
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
42
+ fig.colorbar(im, ax=ax, label="Intensity")
43
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
44
+ ax.set_xlabel("X")
45
+ ax.set_ylabel("Y")
46
+ fig.tight_layout()
47
+ plt.show()
48
+ ```
49
+
50
+ **Domain:** Data visualization
51
+ **Plot family:** 2D heatmap (matplotlib `pcolormesh`)
52
+
53
+ I am showing you an image that claims to be the output of this generator.
54
+
55
+ ---
56
+
57
+ ## Your Task
58
+
59
+ 1. Read the specification carefully. Reason about what the plot should look like
60
+ (shape, orientation, color mapping, symmetry, value signs, etc.).
61
+ 2. Examine the attached image.
62
+ 3. Decide whether the image is **causally consistent** with the generator.
63
+
64
+ If the image is **not** consistent, classify the inconsistency using exactly one
65
+ of these labels:
66
+
67
+ | Label | Meaning |
68
+ |---|---|
69
+ | `colormap_inversion` | The colormap used is different from what the code specifies |
70
+ | `axis_swap` | Axes or data dimensions are transposed or mirrored |
71
+ | `sign_inversion` | Values are negated — peaks and troughs (or bar directions) are swapped |
72
+ | `amplitude_scale` | The value scale is wrong — the colorbar, y-axis range, or bar value labels do not match the formula's amplitudes |
73
+ | `phase_shift` | The pattern is shifted from its correct position |
74
+ | `frequency_doubling` | The number of oscillations or cycles is wrong |
75
+ | `dc_offset` | The curves or point cloud are shifted away from their correct baseline |
76
+ | `wrong_petal_count` | The number of petals/lobes differs from what the formula produces |
77
+ | `symmetry_mismatch` | The image contains asymmetry that the code cannot produce |
78
+ | `bar_order_swap` | Two bars have had their heights swapped — a bar's value label contradicts the code's heights list |
79
+ | `coefficient_scale` | Polynomial coefficients are scaled but the formula in the spec is unchanged |
80
+ | `wrong_gravity` | Trajectory uses a different gravitational constant than the spec |
81
+ | `wrong_launch_angle` | Trajectory uses a different launch angle than the spec |
82
+ | `wrong_iteration_depth` | L-system rendered with a different iteration count than the spec |
83
+ | `wrong_angle` | L-system rendered with a different turn angle than the spec |
84
+
85
+ ---
86
+
87
+ ## Response Format
88
+
89
+ Respond with **only** this JSON object and nothing else:
90
+
91
+ ```json
92
+ {
93
+ "consistent": true | false,
94
+ "bug_type": "<one label from the table above, or null if consistent>",
95
+ "confidence": "low | medium | high",
96
+ "reasoning": "<1–3 sentences: what you expected vs. what you see>"
97
+ }
98
+ ```
consistent/data_visualization/sample_00054/spec.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import matplotlib.pyplot as plt
3
+
4
+ # ── Parameters ─────────────────────────────────────────────────────────────
5
+ seed = 1903
6
+ size = 30
7
+ colormap = "viridis"
8
+ n_blobs = 2
9
+
10
+ # ── Data ────────────────────────────────────────────────────────────────────
11
+ x = np.linspace(-3.0, 3.0, size)
12
+ y = np.linspace(-2.0, 4.0, size)
13
+ X, Y = np.meshgrid(x, y)
14
+ Z = np.zeros((size, size))
15
+
16
+ Z += -1.033551 * np.exp(
17
+ -((X - -1.404482)**2 / (2 * 1.339289**2)
18
+ + (Y - 1.882034)**2 / (2 * 1.391416**2))
19
+ )
20
+ Z += 1.047285 * np.exp(
21
+ -((X - 0.383779)**2 / (2 * 0.635175**2)
22
+ + (Y - 1.768766)**2 / (2 * 1.234761**2))
23
+ )
24
+
25
+ # ── Plot ────────────────────────────────────────────────────────────────────
26
+ fig, ax = plt.subplots(figsize=(6, 5))
27
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
28
+ fig.colorbar(im, ax=ax, label="Intensity")
29
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
30
+ ax.set_xlabel("X")
31
+ ax.set_ylabel("Y")
32
+ fig.tight_layout()
33
+ plt.show()
consistent/data_visualization/sample_00055/clean.png ADDED

Git LFS Details

  • SHA256: d7cc60ad143cd5e140417c7c5cd057d4052a3f2063a517f382a29a4d0bc9ce4d
  • Pointer size: 130 Bytes
  • Size of remote file: 28 kB
consistent/data_visualization/sample_00055/metadata.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sample_id": "sample_00055",
3
+ "split": "consistent",
4
+ "path": "consistent/data_visualization/sample_00055",
5
+ "domain": "data_visualization",
6
+ "family": "heatmap",
7
+ "seed": 1904,
8
+ "consistent": true,
9
+ "perturbation": {
10
+ "type": "none",
11
+ "description": ""
12
+ },
13
+ "symbolic_spec": {
14
+ "representation_type": "python",
15
+ "filename": "spec.py",
16
+ "params": {
17
+ "seed": 1904,
18
+ "size": 25,
19
+ "n_blobs": 3,
20
+ "blobs": [
21
+ {
22
+ "cx": -1.025582172236188,
23
+ "cy": -0.9908447430283012,
24
+ "sx": 0.9469829365771695,
25
+ "sy": 1.0974648499459585,
26
+ "amp": -1.2540773739724984
27
+ },
28
+ {
29
+ "cx": 0.6605254885914489,
30
+ "cy": 1.6964244630893819,
31
+ "sx": 1.0325346925641545,
32
+ "sy": 1.4046411544279211,
33
+ "amp": 1.9919144409047662
34
+ },
35
+ {
36
+ "cx": -1.5384335870949366,
37
+ "cy": 2.1983143560336385,
38
+ "sx": 0.9503880706817222,
39
+ "sy": 0.5733027464209298,
40
+ "amp": -1.7872325254775374
41
+ }
42
+ ],
43
+ "colormap": "plasma"
44
+ }
45
+ },
46
+ "files": {
47
+ "symbolic_spec": "spec.py",
48
+ "clean_image": "clean.png",
49
+ "prompt": "prompt.md"
50
+ }
51
+ }
consistent/data_visualization/sample_00055/prompt.md ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # VeriRender — Causal Consistency Evaluation
2
+ **Sample:** `sample_00055`
3
+
4
+ > **Before sending:** attach `clean.png` from this folder as the image,
5
+ > then paste everything below the horizontal rule into the chat.
6
+
7
+ ---
8
+
9
+ You are evaluating a scientific visualization for **causal consistency**.
10
+
11
+ The following specification is the **symbolic generator** — it fully specifies
12
+ what the output plot should look like:
13
+
14
+ ```python
15
+ import numpy as np
16
+ import matplotlib.pyplot as plt
17
+
18
+ # ── Parameters ─────────────────────────────────────────────────────────────
19
+ seed = 1904
20
+ size = 25
21
+ colormap = "plasma"
22
+ n_blobs = 3
23
+
24
+ # ── Data ────────────────────────────────────────────────────────────────────
25
+ x = np.linspace(-3.0, 3.0, size)
26
+ y = np.linspace(-2.0, 4.0, size)
27
+ X, Y = np.meshgrid(x, y)
28
+ Z = np.zeros((size, size))
29
+
30
+ Z += -1.254077 * np.exp(
31
+ -((X - -1.025582)**2 / (2 * 0.946983**2)
32
+ + (Y - -0.990845)**2 / (2 * 1.097465**2))
33
+ )
34
+ Z += 1.991914 * np.exp(
35
+ -((X - 0.660525)**2 / (2 * 1.032535**2)
36
+ + (Y - 1.696424)**2 / (2 * 1.404641**2))
37
+ )
38
+ Z += -1.787233 * np.exp(
39
+ -((X - -1.538434)**2 / (2 * 0.950388**2)
40
+ + (Y - 2.198314)**2 / (2 * 0.573303**2))
41
+ )
42
+
43
+ # ── Plot ────────────────────────────────────────────────────────────────────
44
+ fig, ax = plt.subplots(figsize=(6, 5))
45
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
46
+ fig.colorbar(im, ax=ax, label="Intensity")
47
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
48
+ ax.set_xlabel("X")
49
+ ax.set_ylabel("Y")
50
+ fig.tight_layout()
51
+ plt.show()
52
+ ```
53
+
54
+ **Domain:** Data visualization
55
+ **Plot family:** 2D heatmap (matplotlib `pcolormesh`)
56
+
57
+ I am showing you an image that claims to be the output of this generator.
58
+
59
+ ---
60
+
61
+ ## Your Task
62
+
63
+ 1. Read the specification carefully. Reason about what the plot should look like
64
+ (shape, orientation, color mapping, symmetry, value signs, etc.).
65
+ 2. Examine the attached image.
66
+ 3. Decide whether the image is **causally consistent** with the generator.
67
+
68
+ If the image is **not** consistent, classify the inconsistency using exactly one
69
+ of these labels:
70
+
71
+ | Label | Meaning |
72
+ |---|---|
73
+ | `colormap_inversion` | The colormap used is different from what the code specifies |
74
+ | `axis_swap` | Axes or data dimensions are transposed or mirrored |
75
+ | `sign_inversion` | Values are negated — peaks and troughs (or bar directions) are swapped |
76
+ | `amplitude_scale` | The value scale is wrong — the colorbar, y-axis range, or bar value labels do not match the formula's amplitudes |
77
+ | `phase_shift` | The pattern is shifted from its correct position |
78
+ | `frequency_doubling` | The number of oscillations or cycles is wrong |
79
+ | `dc_offset` | The curves or point cloud are shifted away from their correct baseline |
80
+ | `wrong_petal_count` | The number of petals/lobes differs from what the formula produces |
81
+ | `symmetry_mismatch` | The image contains asymmetry that the code cannot produce |
82
+ | `bar_order_swap` | Two bars have had their heights swapped — a bar's value label contradicts the code's heights list |
83
+ | `coefficient_scale` | Polynomial coefficients are scaled but the formula in the spec is unchanged |
84
+ | `wrong_gravity` | Trajectory uses a different gravitational constant than the spec |
85
+ | `wrong_launch_angle` | Trajectory uses a different launch angle than the spec |
86
+ | `wrong_iteration_depth` | L-system rendered with a different iteration count than the spec |
87
+ | `wrong_angle` | L-system rendered with a different turn angle than the spec |
88
+
89
+ ---
90
+
91
+ ## Response Format
92
+
93
+ Respond with **only** this JSON object and nothing else:
94
+
95
+ ```json
96
+ {
97
+ "consistent": true | false,
98
+ "bug_type": "<one label from the table above, or null if consistent>",
99
+ "confidence": "low | medium | high",
100
+ "reasoning": "<1–3 sentences: what you expected vs. what you see>"
101
+ }
102
+ ```
consistent/data_visualization/sample_00055/spec.py ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import matplotlib.pyplot as plt
3
+
4
+ # ── Parameters ─────────────────────────────────────────────────────────────
5
+ seed = 1904
6
+ size = 25
7
+ colormap = "plasma"
8
+ n_blobs = 3
9
+
10
+ # ── Data ────────────────────────────────────────────────────────────────────
11
+ x = np.linspace(-3.0, 3.0, size)
12
+ y = np.linspace(-2.0, 4.0, size)
13
+ X, Y = np.meshgrid(x, y)
14
+ Z = np.zeros((size, size))
15
+
16
+ Z += -1.254077 * np.exp(
17
+ -((X - -1.025582)**2 / (2 * 0.946983**2)
18
+ + (Y - -0.990845)**2 / (2 * 1.097465**2))
19
+ )
20
+ Z += 1.991914 * np.exp(
21
+ -((X - 0.660525)**2 / (2 * 1.032535**2)
22
+ + (Y - 1.696424)**2 / (2 * 1.404641**2))
23
+ )
24
+ Z += -1.787233 * np.exp(
25
+ -((X - -1.538434)**2 / (2 * 0.950388**2)
26
+ + (Y - 2.198314)**2 / (2 * 0.573303**2))
27
+ )
28
+
29
+ # ── Plot ────────────────────────────────────────────────────────────────────
30
+ fig, ax = plt.subplots(figsize=(6, 5))
31
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
32
+ fig.colorbar(im, ax=ax, label="Intensity")
33
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
34
+ ax.set_xlabel("X")
35
+ ax.set_ylabel("Y")
36
+ fig.tight_layout()
37
+ plt.show()
consistent/data_visualization/sample_00056/clean.png ADDED

Git LFS Details

  • SHA256: 7289f8c765a72c2fabcccc6b6d6667f3690f43453dc9a6f1f06598afe56ddfeb
  • Pointer size: 130 Bytes
  • Size of remote file: 29.7 kB
consistent/data_visualization/sample_00056/metadata.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sample_id": "sample_00056",
3
+ "split": "consistent",
4
+ "path": "consistent/data_visualization/sample_00056",
5
+ "domain": "data_visualization",
6
+ "family": "heatmap",
7
+ "seed": 1905,
8
+ "consistent": true,
9
+ "perturbation": {
10
+ "type": "none",
11
+ "description": ""
12
+ },
13
+ "symbolic_spec": {
14
+ "representation_type": "python",
15
+ "filename": "spec.py",
16
+ "params": {
17
+ "seed": 1905,
18
+ "size": 45,
19
+ "n_blobs": 2,
20
+ "blobs": [
21
+ {
22
+ "cx": -1.716627103651596,
23
+ "cy": -0.5297733553676873,
24
+ "sx": 1.4182813576359248,
25
+ "sy": 1.2839030656303951,
26
+ "amp": -1.2520868682872761
27
+ },
28
+ {
29
+ "cx": 1.529701828758752,
30
+ "cy": -0.8804752259492181,
31
+ "sx": 1.4473616320018907,
32
+ "sy": 1.167848982598736,
33
+ "amp": 1.4124590602487401
34
+ }
35
+ ],
36
+ "colormap": "magma"
37
+ }
38
+ },
39
+ "files": {
40
+ "symbolic_spec": "spec.py",
41
+ "clean_image": "clean.png",
42
+ "prompt": "prompt.md"
43
+ }
44
+ }
consistent/data_visualization/sample_00056/prompt.md ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # VeriRender — Causal Consistency Evaluation
2
+ **Sample:** `sample_00056`
3
+
4
+ > **Before sending:** attach `clean.png` from this folder as the image,
5
+ > then paste everything below the horizontal rule into the chat.
6
+
7
+ ---
8
+
9
+ You are evaluating a scientific visualization for **causal consistency**.
10
+
11
+ The following specification is the **symbolic generator** — it fully specifies
12
+ what the output plot should look like:
13
+
14
+ ```python
15
+ import numpy as np
16
+ import matplotlib.pyplot as plt
17
+
18
+ # ── Parameters ─────────────────────────────────────────────────────────────
19
+ seed = 1905
20
+ size = 45
21
+ colormap = "magma"
22
+ n_blobs = 2
23
+
24
+ # ── Data ────────────────────────────────────────────────────────────────────
25
+ x = np.linspace(-3.0, 3.0, size)
26
+ y = np.linspace(-2.0, 4.0, size)
27
+ X, Y = np.meshgrid(x, y)
28
+ Z = np.zeros((size, size))
29
+
30
+ Z += -1.252087 * np.exp(
31
+ -((X - -1.716627)**2 / (2 * 1.418281**2)
32
+ + (Y - -0.529773)**2 / (2 * 1.283903**2))
33
+ )
34
+ Z += 1.412459 * np.exp(
35
+ -((X - 1.529702)**2 / (2 * 1.447362**2)
36
+ + (Y - -0.880475)**2 / (2 * 1.167849**2))
37
+ )
38
+
39
+ # ── Plot ────────────────────────────────────────────────────────────────────
40
+ fig, ax = plt.subplots(figsize=(6, 5))
41
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
42
+ fig.colorbar(im, ax=ax, label="Intensity")
43
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
44
+ ax.set_xlabel("X")
45
+ ax.set_ylabel("Y")
46
+ fig.tight_layout()
47
+ plt.show()
48
+ ```
49
+
50
+ **Domain:** Data visualization
51
+ **Plot family:** 2D heatmap (matplotlib `pcolormesh`)
52
+
53
+ I am showing you an image that claims to be the output of this generator.
54
+
55
+ ---
56
+
57
+ ## Your Task
58
+
59
+ 1. Read the specification carefully. Reason about what the plot should look like
60
+ (shape, orientation, color mapping, symmetry, value signs, etc.).
61
+ 2. Examine the attached image.
62
+ 3. Decide whether the image is **causally consistent** with the generator.
63
+
64
+ If the image is **not** consistent, classify the inconsistency using exactly one
65
+ of these labels:
66
+
67
+ | Label | Meaning |
68
+ |---|---|
69
+ | `colormap_inversion` | The colormap used is different from what the code specifies |
70
+ | `axis_swap` | Axes or data dimensions are transposed or mirrored |
71
+ | `sign_inversion` | Values are negated — peaks and troughs (or bar directions) are swapped |
72
+ | `amplitude_scale` | The value scale is wrong — the colorbar, y-axis range, or bar value labels do not match the formula's amplitudes |
73
+ | `phase_shift` | The pattern is shifted from its correct position |
74
+ | `frequency_doubling` | The number of oscillations or cycles is wrong |
75
+ | `dc_offset` | The curves or point cloud are shifted away from their correct baseline |
76
+ | `wrong_petal_count` | The number of petals/lobes differs from what the formula produces |
77
+ | `symmetry_mismatch` | The image contains asymmetry that the code cannot produce |
78
+ | `bar_order_swap` | Two bars have had their heights swapped — a bar's value label contradicts the code's heights list |
79
+ | `coefficient_scale` | Polynomial coefficients are scaled but the formula in the spec is unchanged |
80
+ | `wrong_gravity` | Trajectory uses a different gravitational constant than the spec |
81
+ | `wrong_launch_angle` | Trajectory uses a different launch angle than the spec |
82
+ | `wrong_iteration_depth` | L-system rendered with a different iteration count than the spec |
83
+ | `wrong_angle` | L-system rendered with a different turn angle than the spec |
84
+
85
+ ---
86
+
87
+ ## Response Format
88
+
89
+ Respond with **only** this JSON object and nothing else:
90
+
91
+ ```json
92
+ {
93
+ "consistent": true | false,
94
+ "bug_type": "<one label from the table above, or null if consistent>",
95
+ "confidence": "low | medium | high",
96
+ "reasoning": "<1–3 sentences: what you expected vs. what you see>"
97
+ }
98
+ ```
consistent/data_visualization/sample_00056/spec.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import matplotlib.pyplot as plt
3
+
4
+ # ── Parameters ─────────────────────────────────────────────────────────────
5
+ seed = 1905
6
+ size = 45
7
+ colormap = "magma"
8
+ n_blobs = 2
9
+
10
+ # ── Data ────────────────────────────────────────────────────────────────────
11
+ x = np.linspace(-3.0, 3.0, size)
12
+ y = np.linspace(-2.0, 4.0, size)
13
+ X, Y = np.meshgrid(x, y)
14
+ Z = np.zeros((size, size))
15
+
16
+ Z += -1.252087 * np.exp(
17
+ -((X - -1.716627)**2 / (2 * 1.418281**2)
18
+ + (Y - -0.529773)**2 / (2 * 1.283903**2))
19
+ )
20
+ Z += 1.412459 * np.exp(
21
+ -((X - 1.529702)**2 / (2 * 1.447362**2)
22
+ + (Y - -0.880475)**2 / (2 * 1.167849**2))
23
+ )
24
+
25
+ # ── Plot ────────────────────────────────────────────────────────────────────
26
+ fig, ax = plt.subplots(figsize=(6, 5))
27
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
28
+ fig.colorbar(im, ax=ax, label="Intensity")
29
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
30
+ ax.set_xlabel("X")
31
+ ax.set_ylabel("Y")
32
+ fig.tight_layout()
33
+ plt.show()
consistent/data_visualization/sample_00057/clean.png ADDED

Git LFS Details

  • SHA256: fe38c079be68ac4d6261c548da096417d045e5173e9a69428b61451b607d481d
  • Pointer size: 130 Bytes
  • Size of remote file: 29.8 kB
consistent/data_visualization/sample_00057/metadata.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sample_id": "sample_00057",
3
+ "split": "consistent",
4
+ "path": "consistent/data_visualization/sample_00057",
5
+ "domain": "data_visualization",
6
+ "family": "heatmap",
7
+ "seed": 1906,
8
+ "consistent": true,
9
+ "perturbation": {
10
+ "type": "none",
11
+ "description": ""
12
+ },
13
+ "symbolic_spec": {
14
+ "representation_type": "python",
15
+ "filename": "spec.py",
16
+ "params": {
17
+ "seed": 1906,
18
+ "size": 35,
19
+ "n_blobs": 1,
20
+ "blobs": [
21
+ {
22
+ "cx": -0.7527872580354669,
23
+ "cy": -0.425881148330737,
24
+ "sx": 1.1512009975958548,
25
+ "sy": 1.44436939419273,
26
+ "amp": -1.4788705729600022
27
+ }
28
+ ],
29
+ "colormap": "viridis"
30
+ }
31
+ },
32
+ "files": {
33
+ "symbolic_spec": "spec.py",
34
+ "clean_image": "clean.png",
35
+ "prompt": "prompt.md"
36
+ }
37
+ }
consistent/data_visualization/sample_00057/prompt.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # VeriRender — Causal Consistency Evaluation
2
+ **Sample:** `sample_00057`
3
+
4
+ > **Before sending:** attach `clean.png` from this folder as the image,
5
+ > then paste everything below the horizontal rule into the chat.
6
+
7
+ ---
8
+
9
+ You are evaluating a scientific visualization for **causal consistency**.
10
+
11
+ The following specification is the **symbolic generator** — it fully specifies
12
+ what the output plot should look like:
13
+
14
+ ```python
15
+ import numpy as np
16
+ import matplotlib.pyplot as plt
17
+
18
+ # ── Parameters ─────────────────────────────────────────────────────────────
19
+ seed = 1906
20
+ size = 35
21
+ colormap = "viridis"
22
+ n_blobs = 1
23
+
24
+ # ── Data ────────────────────────────────────────────────────────────────────
25
+ x = np.linspace(-3.0, 3.0, size)
26
+ y = np.linspace(-2.0, 4.0, size)
27
+ X, Y = np.meshgrid(x, y)
28
+ Z = np.zeros((size, size))
29
+
30
+ Z += -1.478871 * np.exp(
31
+ -((X - -0.752787)**2 / (2 * 1.151201**2)
32
+ + (Y - -0.425881)**2 / (2 * 1.444369**2))
33
+ )
34
+
35
+ # ── Plot ────────────────────────────────────────────────────────────────────
36
+ fig, ax = plt.subplots(figsize=(6, 5))
37
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
38
+ fig.colorbar(im, ax=ax, label="Intensity")
39
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
40
+ ax.set_xlabel("X")
41
+ ax.set_ylabel("Y")
42
+ fig.tight_layout()
43
+ plt.show()
44
+ ```
45
+
46
+ **Domain:** Data visualization
47
+ **Plot family:** 2D heatmap (matplotlib `pcolormesh`)
48
+
49
+ I am showing you an image that claims to be the output of this generator.
50
+
51
+ ---
52
+
53
+ ## Your Task
54
+
55
+ 1. Read the specification carefully. Reason about what the plot should look like
56
+ (shape, orientation, color mapping, symmetry, value signs, etc.).
57
+ 2. Examine the attached image.
58
+ 3. Decide whether the image is **causally consistent** with the generator.
59
+
60
+ If the image is **not** consistent, classify the inconsistency using exactly one
61
+ of these labels:
62
+
63
+ | Label | Meaning |
64
+ |---|---|
65
+ | `colormap_inversion` | The colormap used is different from what the code specifies |
66
+ | `axis_swap` | Axes or data dimensions are transposed or mirrored |
67
+ | `sign_inversion` | Values are negated — peaks and troughs (or bar directions) are swapped |
68
+ | `amplitude_scale` | The value scale is wrong — the colorbar, y-axis range, or bar value labels do not match the formula's amplitudes |
69
+ | `phase_shift` | The pattern is shifted from its correct position |
70
+ | `frequency_doubling` | The number of oscillations or cycles is wrong |
71
+ | `dc_offset` | The curves or point cloud are shifted away from their correct baseline |
72
+ | `wrong_petal_count` | The number of petals/lobes differs from what the formula produces |
73
+ | `symmetry_mismatch` | The image contains asymmetry that the code cannot produce |
74
+ | `bar_order_swap` | Two bars have had their heights swapped — a bar's value label contradicts the code's heights list |
75
+ | `coefficient_scale` | Polynomial coefficients are scaled but the formula in the spec is unchanged |
76
+ | `wrong_gravity` | Trajectory uses a different gravitational constant than the spec |
77
+ | `wrong_launch_angle` | Trajectory uses a different launch angle than the spec |
78
+ | `wrong_iteration_depth` | L-system rendered with a different iteration count than the spec |
79
+ | `wrong_angle` | L-system rendered with a different turn angle than the spec |
80
+
81
+ ---
82
+
83
+ ## Response Format
84
+
85
+ Respond with **only** this JSON object and nothing else:
86
+
87
+ ```json
88
+ {
89
+ "consistent": true | false,
90
+ "bug_type": "<one label from the table above, or null if consistent>",
91
+ "confidence": "low | medium | high",
92
+ "reasoning": "<1–3 sentences: what you expected vs. what you see>"
93
+ }
94
+ ```
consistent/data_visualization/sample_00057/spec.py ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import matplotlib.pyplot as plt
3
+
4
+ # ── Parameters ─────────────────────────────────────────────────────────────
5
+ seed = 1906
6
+ size = 35
7
+ colormap = "viridis"
8
+ n_blobs = 1
9
+
10
+ # ── Data ────────────────────────────────────────────────────────────────────
11
+ x = np.linspace(-3.0, 3.0, size)
12
+ y = np.linspace(-2.0, 4.0, size)
13
+ X, Y = np.meshgrid(x, y)
14
+ Z = np.zeros((size, size))
15
+
16
+ Z += -1.478871 * np.exp(
17
+ -((X - -0.752787)**2 / (2 * 1.151201**2)
18
+ + (Y - -0.425881)**2 / (2 * 1.444369**2))
19
+ )
20
+
21
+ # ── Plot ────────────────────────────────────────────────────────────────────
22
+ fig, ax = plt.subplots(figsize=(6, 5))
23
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
24
+ fig.colorbar(im, ax=ax, label="Intensity")
25
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
26
+ ax.set_xlabel("X")
27
+ ax.set_ylabel("Y")
28
+ fig.tight_layout()
29
+ plt.show()
consistent/data_visualization/sample_00058/clean.png ADDED

Git LFS Details

  • SHA256: cca795c2fd12a7f45faa56085d804ca2b295a953e7b543dcd01ab0788e84238d
  • Pointer size: 130 Bytes
  • Size of remote file: 29.1 kB
consistent/data_visualization/sample_00058/metadata.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sample_id": "sample_00058",
3
+ "split": "consistent",
4
+ "path": "consistent/data_visualization/sample_00058",
5
+ "domain": "data_visualization",
6
+ "family": "heatmap",
7
+ "seed": 1907,
8
+ "consistent": true,
9
+ "perturbation": {
10
+ "type": "none",
11
+ "description": ""
12
+ },
13
+ "symbolic_spec": {
14
+ "representation_type": "python",
15
+ "filename": "spec.py",
16
+ "params": {
17
+ "seed": 1907,
18
+ "size": 42,
19
+ "n_blobs": 3,
20
+ "blobs": [
21
+ {
22
+ "cx": 1.2166542142247603,
23
+ "cy": -0.6981153273636793,
24
+ "sx": 1.4172144773618949,
25
+ "sy": 1.244495237722108,
26
+ "amp": 0.5926686450972745
27
+ },
28
+ {
29
+ "cx": 0.9680270489054204,
30
+ "cy": 0.8157688873253512,
31
+ "sx": 0.8641721068360724,
32
+ "sy": 1.3952087300689957,
33
+ "amp": 1.3831311830034514
34
+ },
35
+ {
36
+ "cx": 1.9652727205924059,
37
+ "cy": 1.0116830955054525,
38
+ "sx": 0.7792459388799935,
39
+ "sy": 1.0772741898826017,
40
+ "amp": 1.4029525572804764
41
+ }
42
+ ],
43
+ "colormap": "viridis"
44
+ }
45
+ },
46
+ "files": {
47
+ "symbolic_spec": "spec.py",
48
+ "clean_image": "clean.png",
49
+ "prompt": "prompt.md"
50
+ }
51
+ }
consistent/data_visualization/sample_00058/prompt.md ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # VeriRender — Causal Consistency Evaluation
2
+ **Sample:** `sample_00058`
3
+
4
+ > **Before sending:** attach `clean.png` from this folder as the image,
5
+ > then paste everything below the horizontal rule into the chat.
6
+
7
+ ---
8
+
9
+ You are evaluating a scientific visualization for **causal consistency**.
10
+
11
+ The following specification is the **symbolic generator** — it fully specifies
12
+ what the output plot should look like:
13
+
14
+ ```python
15
+ import numpy as np
16
+ import matplotlib.pyplot as plt
17
+
18
+ # ── Parameters ─────────────────────────────────────────────────────────────
19
+ seed = 1907
20
+ size = 42
21
+ colormap = "viridis"
22
+ n_blobs = 3
23
+
24
+ # ── Data ────────────────────────────────────────────────────────────────────
25
+ x = np.linspace(-3.0, 3.0, size)
26
+ y = np.linspace(-2.0, 4.0, size)
27
+ X, Y = np.meshgrid(x, y)
28
+ Z = np.zeros((size, size))
29
+
30
+ Z += 0.592669 * np.exp(
31
+ -((X - 1.216654)**2 / (2 * 1.417214**2)
32
+ + (Y - -0.698115)**2 / (2 * 1.244495**2))
33
+ )
34
+ Z += 1.383131 * np.exp(
35
+ -((X - 0.968027)**2 / (2 * 0.864172**2)
36
+ + (Y - 0.815769)**2 / (2 * 1.395209**2))
37
+ )
38
+ Z += 1.402953 * np.exp(
39
+ -((X - 1.965273)**2 / (2 * 0.779246**2)
40
+ + (Y - 1.011683)**2 / (2 * 1.077274**2))
41
+ )
42
+
43
+ # ── Plot ────────────────────────────────────────────────────────────────────
44
+ fig, ax = plt.subplots(figsize=(6, 5))
45
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
46
+ fig.colorbar(im, ax=ax, label="Intensity")
47
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
48
+ ax.set_xlabel("X")
49
+ ax.set_ylabel("Y")
50
+ fig.tight_layout()
51
+ plt.show()
52
+ ```
53
+
54
+ **Domain:** Data visualization
55
+ **Plot family:** 2D heatmap (matplotlib `pcolormesh`)
56
+
57
+ I am showing you an image that claims to be the output of this generator.
58
+
59
+ ---
60
+
61
+ ## Your Task
62
+
63
+ 1. Read the specification carefully. Reason about what the plot should look like
64
+ (shape, orientation, color mapping, symmetry, value signs, etc.).
65
+ 2. Examine the attached image.
66
+ 3. Decide whether the image is **causally consistent** with the generator.
67
+
68
+ If the image is **not** consistent, classify the inconsistency using exactly one
69
+ of these labels:
70
+
71
+ | Label | Meaning |
72
+ |---|---|
73
+ | `colormap_inversion` | The colormap used is different from what the code specifies |
74
+ | `axis_swap` | Axes or data dimensions are transposed or mirrored |
75
+ | `sign_inversion` | Values are negated — peaks and troughs (or bar directions) are swapped |
76
+ | `amplitude_scale` | The value scale is wrong — the colorbar, y-axis range, or bar value labels do not match the formula's amplitudes |
77
+ | `phase_shift` | The pattern is shifted from its correct position |
78
+ | `frequency_doubling` | The number of oscillations or cycles is wrong |
79
+ | `dc_offset` | The curves or point cloud are shifted away from their correct baseline |
80
+ | `wrong_petal_count` | The number of petals/lobes differs from what the formula produces |
81
+ | `symmetry_mismatch` | The image contains asymmetry that the code cannot produce |
82
+ | `bar_order_swap` | Two bars have had their heights swapped — a bar's value label contradicts the code's heights list |
83
+ | `coefficient_scale` | Polynomial coefficients are scaled but the formula in the spec is unchanged |
84
+ | `wrong_gravity` | Trajectory uses a different gravitational constant than the spec |
85
+ | `wrong_launch_angle` | Trajectory uses a different launch angle than the spec |
86
+ | `wrong_iteration_depth` | L-system rendered with a different iteration count than the spec |
87
+ | `wrong_angle` | L-system rendered with a different turn angle than the spec |
88
+
89
+ ---
90
+
91
+ ## Response Format
92
+
93
+ Respond with **only** this JSON object and nothing else:
94
+
95
+ ```json
96
+ {
97
+ "consistent": true | false,
98
+ "bug_type": "<one label from the table above, or null if consistent>",
99
+ "confidence": "low | medium | high",
100
+ "reasoning": "<1–3 sentences: what you expected vs. what you see>"
101
+ }
102
+ ```
consistent/data_visualization/sample_00058/spec.py ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import matplotlib.pyplot as plt
3
+
4
+ # ── Parameters ─────────────────────────────────────────────────────────────
5
+ seed = 1907
6
+ size = 42
7
+ colormap = "viridis"
8
+ n_blobs = 3
9
+
10
+ # ── Data ────────────────────────────────────────────────────────────────────
11
+ x = np.linspace(-3.0, 3.0, size)
12
+ y = np.linspace(-2.0, 4.0, size)
13
+ X, Y = np.meshgrid(x, y)
14
+ Z = np.zeros((size, size))
15
+
16
+ Z += 0.592669 * np.exp(
17
+ -((X - 1.216654)**2 / (2 * 1.417214**2)
18
+ + (Y - -0.698115)**2 / (2 * 1.244495**2))
19
+ )
20
+ Z += 1.383131 * np.exp(
21
+ -((X - 0.968027)**2 / (2 * 0.864172**2)
22
+ + (Y - 0.815769)**2 / (2 * 1.395209**2))
23
+ )
24
+ Z += 1.402953 * np.exp(
25
+ -((X - 1.965273)**2 / (2 * 0.779246**2)
26
+ + (Y - 1.011683)**2 / (2 * 1.077274**2))
27
+ )
28
+
29
+ # ── Plot ────────────────────────────────────────────────────────────────────
30
+ fig, ax = plt.subplots(figsize=(6, 5))
31
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
32
+ fig.colorbar(im, ax=ax, label="Intensity")
33
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
34
+ ax.set_xlabel("X")
35
+ ax.set_ylabel("Y")
36
+ fig.tight_layout()
37
+ plt.show()
consistent/data_visualization/sample_00059/clean.png ADDED

Git LFS Details

  • SHA256: 9fa59a8676c76ddf65094800a742707f88856315505ff3c14c7f25be88093afd
  • Pointer size: 130 Bytes
  • Size of remote file: 27.8 kB
consistent/data_visualization/sample_00059/metadata.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sample_id": "sample_00059",
3
+ "split": "consistent",
4
+ "path": "consistent/data_visualization/sample_00059",
5
+ "domain": "data_visualization",
6
+ "family": "heatmap",
7
+ "seed": 1908,
8
+ "consistent": true,
9
+ "perturbation": {
10
+ "type": "none",
11
+ "description": ""
12
+ },
13
+ "symbolic_spec": {
14
+ "representation_type": "python",
15
+ "filename": "spec.py",
16
+ "params": {
17
+ "seed": 1908,
18
+ "size": 26,
19
+ "n_blobs": 1,
20
+ "blobs": [
21
+ {
22
+ "cx": 0.8121880777843526,
23
+ "cy": 1.030430488963911,
24
+ "sx": 0.5828399092978374,
25
+ "sy": 1.414860638338725,
26
+ "amp": -0.6725555530137711
27
+ }
28
+ ],
29
+ "colormap": "viridis"
30
+ }
31
+ },
32
+ "files": {
33
+ "symbolic_spec": "spec.py",
34
+ "clean_image": "clean.png",
35
+ "prompt": "prompt.md"
36
+ }
37
+ }
consistent/data_visualization/sample_00059/prompt.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # VeriRender — Causal Consistency Evaluation
2
+ **Sample:** `sample_00059`
3
+
4
+ > **Before sending:** attach `clean.png` from this folder as the image,
5
+ > then paste everything below the horizontal rule into the chat.
6
+
7
+ ---
8
+
9
+ You are evaluating a scientific visualization for **causal consistency**.
10
+
11
+ The following specification is the **symbolic generator** — it fully specifies
12
+ what the output plot should look like:
13
+
14
+ ```python
15
+ import numpy as np
16
+ import matplotlib.pyplot as plt
17
+
18
+ # ── Parameters ─────────────────────────────────────────────────────────────
19
+ seed = 1908
20
+ size = 26
21
+ colormap = "viridis"
22
+ n_blobs = 1
23
+
24
+ # ── Data ────────────────────────────────────────────────────────────────────
25
+ x = np.linspace(-3.0, 3.0, size)
26
+ y = np.linspace(-2.0, 4.0, size)
27
+ X, Y = np.meshgrid(x, y)
28
+ Z = np.zeros((size, size))
29
+
30
+ Z += -0.672556 * np.exp(
31
+ -((X - 0.812188)**2 / (2 * 0.582840**2)
32
+ + (Y - 1.030430)**2 / (2 * 1.414861**2))
33
+ )
34
+
35
+ # ── Plot ────────────────────────────────────────────────────────────────────
36
+ fig, ax = plt.subplots(figsize=(6, 5))
37
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
38
+ fig.colorbar(im, ax=ax, label="Intensity")
39
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
40
+ ax.set_xlabel("X")
41
+ ax.set_ylabel("Y")
42
+ fig.tight_layout()
43
+ plt.show()
44
+ ```
45
+
46
+ **Domain:** Data visualization
47
+ **Plot family:** 2D heatmap (matplotlib `pcolormesh`)
48
+
49
+ I am showing you an image that claims to be the output of this generator.
50
+
51
+ ---
52
+
53
+ ## Your Task
54
+
55
+ 1. Read the specification carefully. Reason about what the plot should look like
56
+ (shape, orientation, color mapping, symmetry, value signs, etc.).
57
+ 2. Examine the attached image.
58
+ 3. Decide whether the image is **causally consistent** with the generator.
59
+
60
+ If the image is **not** consistent, classify the inconsistency using exactly one
61
+ of these labels:
62
+
63
+ | Label | Meaning |
64
+ |---|---|
65
+ | `colormap_inversion` | The colormap used is different from what the code specifies |
66
+ | `axis_swap` | Axes or data dimensions are transposed or mirrored |
67
+ | `sign_inversion` | Values are negated — peaks and troughs (or bar directions) are swapped |
68
+ | `amplitude_scale` | The value scale is wrong — the colorbar, y-axis range, or bar value labels do not match the formula's amplitudes |
69
+ | `phase_shift` | The pattern is shifted from its correct position |
70
+ | `frequency_doubling` | The number of oscillations or cycles is wrong |
71
+ | `dc_offset` | The curves or point cloud are shifted away from their correct baseline |
72
+ | `wrong_petal_count` | The number of petals/lobes differs from what the formula produces |
73
+ | `symmetry_mismatch` | The image contains asymmetry that the code cannot produce |
74
+ | `bar_order_swap` | Two bars have had their heights swapped — a bar's value label contradicts the code's heights list |
75
+ | `coefficient_scale` | Polynomial coefficients are scaled but the formula in the spec is unchanged |
76
+ | `wrong_gravity` | Trajectory uses a different gravitational constant than the spec |
77
+ | `wrong_launch_angle` | Trajectory uses a different launch angle than the spec |
78
+ | `wrong_iteration_depth` | L-system rendered with a different iteration count than the spec |
79
+ | `wrong_angle` | L-system rendered with a different turn angle than the spec |
80
+
81
+ ---
82
+
83
+ ## Response Format
84
+
85
+ Respond with **only** this JSON object and nothing else:
86
+
87
+ ```json
88
+ {
89
+ "consistent": true | false,
90
+ "bug_type": "<one label from the table above, or null if consistent>",
91
+ "confidence": "low | medium | high",
92
+ "reasoning": "<1–3 sentences: what you expected vs. what you see>"
93
+ }
94
+ ```
consistent/data_visualization/sample_00059/spec.py ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import matplotlib.pyplot as plt
3
+
4
+ # ── Parameters ─────────────────────────────────────────────────────────────
5
+ seed = 1908
6
+ size = 26
7
+ colormap = "viridis"
8
+ n_blobs = 1
9
+
10
+ # ── Data ────────────────────────────────────────────────────────────────────
11
+ x = np.linspace(-3.0, 3.0, size)
12
+ y = np.linspace(-2.0, 4.0, size)
13
+ X, Y = np.meshgrid(x, y)
14
+ Z = np.zeros((size, size))
15
+
16
+ Z += -0.672556 * np.exp(
17
+ -((X - 0.812188)**2 / (2 * 0.582840**2)
18
+ + (Y - 1.030430)**2 / (2 * 1.414861**2))
19
+ )
20
+
21
+ # ── Plot ────────────────────────────────────────────────────────────────────
22
+ fig, ax = plt.subplots(figsize=(6, 5))
23
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
24
+ fig.colorbar(im, ax=ax, label="Intensity")
25
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
26
+ ax.set_xlabel("X")
27
+ ax.set_ylabel("Y")
28
+ fig.tight_layout()
29
+ plt.show()
consistent/data_visualization/sample_00060/clean.png ADDED

Git LFS Details

  • SHA256: 08a568c5a1a44b66a4c0efd7e237f89e23401603230a0b844eae35610c5bc3a2
  • Pointer size: 130 Bytes
  • Size of remote file: 27.7 kB
consistent/data_visualization/sample_00060/metadata.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sample_id": "sample_00060",
3
+ "split": "consistent",
4
+ "path": "consistent/data_visualization/sample_00060",
5
+ "domain": "data_visualization",
6
+ "family": "heatmap",
7
+ "seed": 1909,
8
+ "consistent": true,
9
+ "perturbation": {
10
+ "type": "none",
11
+ "description": ""
12
+ },
13
+ "symbolic_spec": {
14
+ "representation_type": "python",
15
+ "filename": "spec.py",
16
+ "params": {
17
+ "seed": 1909,
18
+ "size": 34,
19
+ "n_blobs": 2,
20
+ "blobs": [
21
+ {
22
+ "cx": 1.9139680809502884,
23
+ "cy": 1.8973902075583284,
24
+ "sx": 1.1239015619274189,
25
+ "sy": 1.0751496321070007,
26
+ "amp": -1.8114773319036859
27
+ },
28
+ {
29
+ "cx": 0.49057581098433056,
30
+ "cy": 2.5868064164145474,
31
+ "sx": 1.139029393598444,
32
+ "sy": 0.8287075768724488,
33
+ "amp": 1.8361618507470983
34
+ }
35
+ ],
36
+ "colormap": "inferno"
37
+ }
38
+ },
39
+ "files": {
40
+ "symbolic_spec": "spec.py",
41
+ "clean_image": "clean.png",
42
+ "prompt": "prompt.md"
43
+ }
44
+ }
consistent/data_visualization/sample_00060/prompt.md ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # VeriRender — Causal Consistency Evaluation
2
+ **Sample:** `sample_00060`
3
+
4
+ > **Before sending:** attach `clean.png` from this folder as the image,
5
+ > then paste everything below the horizontal rule into the chat.
6
+
7
+ ---
8
+
9
+ You are evaluating a scientific visualization for **causal consistency**.
10
+
11
+ The following specification is the **symbolic generator** — it fully specifies
12
+ what the output plot should look like:
13
+
14
+ ```python
15
+ import numpy as np
16
+ import matplotlib.pyplot as plt
17
+
18
+ # ── Parameters ─────────────────────────────────────────────────────────────
19
+ seed = 1909
20
+ size = 34
21
+ colormap = "inferno"
22
+ n_blobs = 2
23
+
24
+ # ── Data ────────────────────────────────────────────────────────────────────
25
+ x = np.linspace(-3.0, 3.0, size)
26
+ y = np.linspace(-2.0, 4.0, size)
27
+ X, Y = np.meshgrid(x, y)
28
+ Z = np.zeros((size, size))
29
+
30
+ Z += -1.811477 * np.exp(
31
+ -((X - 1.913968)**2 / (2 * 1.123902**2)
32
+ + (Y - 1.897390)**2 / (2 * 1.075150**2))
33
+ )
34
+ Z += 1.836162 * np.exp(
35
+ -((X - 0.490576)**2 / (2 * 1.139029**2)
36
+ + (Y - 2.586806)**2 / (2 * 0.828708**2))
37
+ )
38
+
39
+ # ── Plot ────────────────────────────────────────────────────────────────────
40
+ fig, ax = plt.subplots(figsize=(6, 5))
41
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
42
+ fig.colorbar(im, ax=ax, label="Intensity")
43
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
44
+ ax.set_xlabel("X")
45
+ ax.set_ylabel("Y")
46
+ fig.tight_layout()
47
+ plt.show()
48
+ ```
49
+
50
+ **Domain:** Data visualization
51
+ **Plot family:** 2D heatmap (matplotlib `pcolormesh`)
52
+
53
+ I am showing you an image that claims to be the output of this generator.
54
+
55
+ ---
56
+
57
+ ## Your Task
58
+
59
+ 1. Read the specification carefully. Reason about what the plot should look like
60
+ (shape, orientation, color mapping, symmetry, value signs, etc.).
61
+ 2. Examine the attached image.
62
+ 3. Decide whether the image is **causally consistent** with the generator.
63
+
64
+ If the image is **not** consistent, classify the inconsistency using exactly one
65
+ of these labels:
66
+
67
+ | Label | Meaning |
68
+ |---|---|
69
+ | `colormap_inversion` | The colormap used is different from what the code specifies |
70
+ | `axis_swap` | Axes or data dimensions are transposed or mirrored |
71
+ | `sign_inversion` | Values are negated — peaks and troughs (or bar directions) are swapped |
72
+ | `amplitude_scale` | The value scale is wrong — the colorbar, y-axis range, or bar value labels do not match the formula's amplitudes |
73
+ | `phase_shift` | The pattern is shifted from its correct position |
74
+ | `frequency_doubling` | The number of oscillations or cycles is wrong |
75
+ | `dc_offset` | The curves or point cloud are shifted away from their correct baseline |
76
+ | `wrong_petal_count` | The number of petals/lobes differs from what the formula produces |
77
+ | `symmetry_mismatch` | The image contains asymmetry that the code cannot produce |
78
+ | `bar_order_swap` | Two bars have had their heights swapped — a bar's value label contradicts the code's heights list |
79
+ | `coefficient_scale` | Polynomial coefficients are scaled but the formula in the spec is unchanged |
80
+ | `wrong_gravity` | Trajectory uses a different gravitational constant than the spec |
81
+ | `wrong_launch_angle` | Trajectory uses a different launch angle than the spec |
82
+ | `wrong_iteration_depth` | L-system rendered with a different iteration count than the spec |
83
+ | `wrong_angle` | L-system rendered with a different turn angle than the spec |
84
+
85
+ ---
86
+
87
+ ## Response Format
88
+
89
+ Respond with **only** this JSON object and nothing else:
90
+
91
+ ```json
92
+ {
93
+ "consistent": true | false,
94
+ "bug_type": "<one label from the table above, or null if consistent>",
95
+ "confidence": "low | medium | high",
96
+ "reasoning": "<1–3 sentences: what you expected vs. what you see>"
97
+ }
98
+ ```
consistent/data_visualization/sample_00060/spec.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import matplotlib.pyplot as plt
3
+
4
+ # ── Parameters ─────────────────────────────────────────────────────────────
5
+ seed = 1909
6
+ size = 34
7
+ colormap = "inferno"
8
+ n_blobs = 2
9
+
10
+ # ── Data ────────────────────────────────────────────────────────────────────
11
+ x = np.linspace(-3.0, 3.0, size)
12
+ y = np.linspace(-2.0, 4.0, size)
13
+ X, Y = np.meshgrid(x, y)
14
+ Z = np.zeros((size, size))
15
+
16
+ Z += -1.811477 * np.exp(
17
+ -((X - 1.913968)**2 / (2 * 1.123902**2)
18
+ + (Y - 1.897390)**2 / (2 * 1.075150**2))
19
+ )
20
+ Z += 1.836162 * np.exp(
21
+ -((X - 0.490576)**2 / (2 * 1.139029**2)
22
+ + (Y - 2.586806)**2 / (2 * 0.828708**2))
23
+ )
24
+
25
+ # ── Plot ────────────────────────────────────────────────────────────────────
26
+ fig, ax = plt.subplots(figsize=(6, 5))
27
+ im = ax.pcolormesh(X, Y, Z, cmap=colormap, shading="auto")
28
+ fig.colorbar(im, ax=ax, label="Intensity")
29
+ ax.set_title(f"Gaussian Heatmap ({n_blobs} blob(s))")
30
+ ax.set_xlabel("X")
31
+ ax.set_ylabel("Y")
32
+ fig.tight_layout()
33
+ plt.show()
consistent/data_visualization/sample_00121/clean.png ADDED

Git LFS Details

  • SHA256: c5a52473b56dbaa1ef2708ff35b2c55702c9f2a341d40d73ec7340cea62c398f
  • Pointer size: 130 Bytes
  • Size of remote file: 55.4 kB
consistent/data_visualization/sample_00121/metadata.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sample_id": "sample_00121",
3
+ "split": "consistent",
4
+ "path": "consistent/data_visualization/sample_00121",
5
+ "domain": "data_visualization",
6
+ "family": "line_plot",
7
+ "seed": 2900,
8
+ "consistent": true,
9
+ "perturbation": {
10
+ "type": "none",
11
+ "description": ""
12
+ },
13
+ "symbolic_spec": {
14
+ "representation_type": "python",
15
+ "filename": "spec.py",
16
+ "params": {
17
+ "seed": 2900,
18
+ "n_lines": 2,
19
+ "n_points": 161,
20
+ "lines": [
21
+ {
22
+ "freq": 1.1189131191591275,
23
+ "phase": 1.008836567919947,
24
+ "amp": 0.8319501032766907
25
+ },
26
+ {
27
+ "freq": 0.9322946479429992,
28
+ "phase": 2.2343933631344832,
29
+ "amp": 1.3383584330015925
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ "files": {
35
+ "symbolic_spec": "spec.py",
36
+ "clean_image": "clean.png",
37
+ "prompt": "prompt.md"
38
+ }
39
+ }
consistent/data_visualization/sample_00121/prompt.md ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # VeriRender — Causal Consistency Evaluation
2
+ **Sample:** `sample_00121`
3
+
4
+ > **Before sending:** attach `clean.png` from this folder as the image,
5
+ > then paste everything below the horizontal rule into the chat.
6
+
7
+ ---
8
+
9
+ You are evaluating a scientific visualization for **causal consistency**.
10
+
11
+ The following specification is the **symbolic generator** — it fully specifies
12
+ what the output plot should look like:
13
+
14
+ ```python
15
+ import numpy as np
16
+ import matplotlib.pyplot as plt
17
+
18
+ # ── Parameters ─────────────────────────────────────────────────────────────
19
+ seed = 2900
20
+ n_points = 161
21
+
22
+ # ── Data ────────────────────────────────────────────────────────────────────
23
+ x = np.linspace(0.0, 2.0 * np.pi, n_points)
24
+
25
+ y0 = 0.831950 * np.sin(1.118913 * x + 1.008837)
26
+ y1 = 1.338358 * np.sin(0.932295 * x + 2.234393)
27
+
28
+ # ── Plot ────────────────────────────────────────────────────────────────────
29
+ fig, ax = plt.subplots(figsize=(7, 4))
30
+ ax.plot(x, y0, color="tab:blue", label="A=0.83, f=1.12, φ=1.01")
31
+ ax.plot(x, y1, color="tab:orange", label="A=1.34, f=0.93, φ=2.23")
32
+ ax.set_xlabel("x")
33
+ ax.set_ylabel("y")
34
+ ax.set_title("Sinusoidal Line Plot (2 curve(s))")
35
+ ax.legend(fontsize=8)
36
+ ax.grid(True, alpha=0.3)
37
+ fig.tight_layout()
38
+ plt.show()
39
+ ```
40
+
41
+ **Domain:** Data visualization
42
+ **Plot family:** Line plot (sinusoidal curves)
43
+
44
+ I am showing you an image that claims to be the output of this generator.
45
+
46
+ ---
47
+
48
+ ## Your Task
49
+
50
+ 1. Read the specification carefully. Reason about what the plot should look like
51
+ (shape, orientation, color mapping, symmetry, value signs, etc.).
52
+ 2. Examine the attached image.
53
+ 3. Decide whether the image is **causally consistent** with the generator.
54
+
55
+ If the image is **not** consistent, classify the inconsistency using exactly one
56
+ of these labels:
57
+
58
+ | Label | Meaning |
59
+ |---|---|
60
+ | `colormap_inversion` | The colormap used is different from what the code specifies |
61
+ | `axis_swap` | Axes or data dimensions are transposed or mirrored |
62
+ | `sign_inversion` | Values are negated — peaks and troughs (or bar directions) are swapped |
63
+ | `amplitude_scale` | The value scale is wrong — the colorbar, y-axis range, or bar value labels do not match the formula's amplitudes |
64
+ | `phase_shift` | The pattern is shifted from its correct position |
65
+ | `frequency_doubling` | The number of oscillations or cycles is wrong |
66
+ | `dc_offset` | The curves or point cloud are shifted away from their correct baseline |
67
+ | `wrong_petal_count` | The number of petals/lobes differs from what the formula produces |
68
+ | `symmetry_mismatch` | The image contains asymmetry that the code cannot produce |
69
+ | `bar_order_swap` | Two bars have had their heights swapped — a bar's value label contradicts the code's heights list |
70
+ | `coefficient_scale` | Polynomial coefficients are scaled but the formula in the spec is unchanged |
71
+ | `wrong_gravity` | Trajectory uses a different gravitational constant than the spec |
72
+ | `wrong_launch_angle` | Trajectory uses a different launch angle than the spec |
73
+ | `wrong_iteration_depth` | L-system rendered with a different iteration count than the spec |
74
+ | `wrong_angle` | L-system rendered with a different turn angle than the spec |
75
+
76
+ ---
77
+
78
+ ## Response Format
79
+
80
+ Respond with **only** this JSON object and nothing else:
81
+
82
+ ```json
83
+ {
84
+ "consistent": true | false,
85
+ "bug_type": "<one label from the table above, or null if consistent>",
86
+ "confidence": "low | medium | high",
87
+ "reasoning": "<1–3 sentences: what you expected vs. what you see>"
88
+ }
89
+ ```
consistent/data_visualization/sample_00121/spec.py ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import matplotlib.pyplot as plt
3
+
4
+ # ── Parameters ─────────────────────────────────────────────────────────────
5
+ seed = 2900
6
+ n_points = 161
7
+
8
+ # ── Data ────────────────────────────────────────────────────────────────────
9
+ x = np.linspace(0.0, 2.0 * np.pi, n_points)
10
+
11
+ y0 = 0.831950 * np.sin(1.118913 * x + 1.008837)
12
+ y1 = 1.338358 * np.sin(0.932295 * x + 2.234393)
13
+
14
+ # ── Plot ────────────────────────────────────────────────────────────────────
15
+ fig, ax = plt.subplots(figsize=(7, 4))
16
+ ax.plot(x, y0, color="tab:blue", label="A=0.83, f=1.12, φ=1.01")
17
+ ax.plot(x, y1, color="tab:orange", label="A=1.34, f=0.93, φ=2.23")
18
+ ax.set_xlabel("x")
19
+ ax.set_ylabel("y")
20
+ ax.set_title("Sinusoidal Line Plot (2 curve(s))")
21
+ ax.legend(fontsize=8)
22
+ ax.grid(True, alpha=0.3)
23
+ fig.tight_layout()
24
+ plt.show()
consistent/data_visualization/sample_00122/clean.png ADDED

Git LFS Details

  • SHA256: c036911be7d488a09e33e99e716eaa2c321573213ac20baaa636d856636be9f6
  • Pointer size: 130 Bytes
  • Size of remote file: 88.2 kB
consistent/data_visualization/sample_00122/metadata.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "sample_id": "sample_00122",
3
+ "split": "consistent",
4
+ "path": "consistent/data_visualization/sample_00122",
5
+ "domain": "data_visualization",
6
+ "family": "line_plot",
7
+ "seed": 2901,
8
+ "consistent": true,
9
+ "perturbation": {
10
+ "type": "none",
11
+ "description": ""
12
+ },
13
+ "symbolic_spec": {
14
+ "representation_type": "python",
15
+ "filename": "spec.py",
16
+ "params": {
17
+ "seed": 2901,
18
+ "n_lines": 3,
19
+ "n_points": 145,
20
+ "lines": [
21
+ {
22
+ "freq": 1.3027794766211365,
23
+ "phase": 4.981734333879934,
24
+ "amp": 1.1556399482473287
25
+ },
26
+ {
27
+ "freq": 2.9477452643605653,
28
+ "phase": 2.938028445668197,
29
+ "amp": 0.9115399721335747
30
+ },
31
+ {
32
+ "freq": 1.4542827508589877,
33
+ "phase": 4.031507938481674,
34
+ "amp": 0.8590449442353691
35
+ }
36
+ ]
37
+ }
38
+ },
39
+ "files": {
40
+ "symbolic_spec": "spec.py",
41
+ "clean_image": "clean.png",
42
+ "prompt": "prompt.md"
43
+ }
44
+ }
consistent/data_visualization/sample_00122/prompt.md ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # VeriRender — Causal Consistency Evaluation
2
+ **Sample:** `sample_00122`
3
+
4
+ > **Before sending:** attach `clean.png` from this folder as the image,
5
+ > then paste everything below the horizontal rule into the chat.
6
+
7
+ ---
8
+
9
+ You are evaluating a scientific visualization for **causal consistency**.
10
+
11
+ The following specification is the **symbolic generator** — it fully specifies
12
+ what the output plot should look like:
13
+
14
+ ```python
15
+ import numpy as np
16
+ import matplotlib.pyplot as plt
17
+
18
+ # ── Parameters ─────────────────────────────────────────────────────────────
19
+ seed = 2901
20
+ n_points = 145
21
+
22
+ # ── Data ────────────────────────────────────────────────────────────────────
23
+ x = np.linspace(0.0, 2.0 * np.pi, n_points)
24
+
25
+ y0 = 1.155640 * np.sin(1.302779 * x + 4.981734)
26
+ y1 = 0.911540 * np.sin(2.947745 * x + 2.938028)
27
+ y2 = 0.859045 * np.sin(1.454283 * x + 4.031508)
28
+
29
+ # ── Plot ────────────────────────────────────────────────────────────────────
30
+ fig, ax = plt.subplots(figsize=(7, 4))
31
+ ax.plot(x, y0, color="tab:blue", label="A=1.16, f=1.30, φ=4.98")
32
+ ax.plot(x, y1, color="tab:orange", label="A=0.91, f=2.95, φ=2.94")
33
+ ax.plot(x, y2, color="tab:green", label="A=0.86, f=1.45, φ=4.03")
34
+ ax.set_xlabel("x")
35
+ ax.set_ylabel("y")
36
+ ax.set_title("Sinusoidal Line Plot (3 curve(s))")
37
+ ax.legend(fontsize=8)
38
+ ax.grid(True, alpha=0.3)
39
+ fig.tight_layout()
40
+ plt.show()
41
+ ```
42
+
43
+ **Domain:** Data visualization
44
+ **Plot family:** Line plot (sinusoidal curves)
45
+
46
+ I am showing you an image that claims to be the output of this generator.
47
+
48
+ ---
49
+
50
+ ## Your Task
51
+
52
+ 1. Read the specification carefully. Reason about what the plot should look like
53
+ (shape, orientation, color mapping, symmetry, value signs, etc.).
54
+ 2. Examine the attached image.
55
+ 3. Decide whether the image is **causally consistent** with the generator.
56
+
57
+ If the image is **not** consistent, classify the inconsistency using exactly one
58
+ of these labels:
59
+
60
+ | Label | Meaning |
61
+ |---|---|
62
+ | `colormap_inversion` | The colormap used is different from what the code specifies |
63
+ | `axis_swap` | Axes or data dimensions are transposed or mirrored |
64
+ | `sign_inversion` | Values are negated — peaks and troughs (or bar directions) are swapped |
65
+ | `amplitude_scale` | The value scale is wrong — the colorbar, y-axis range, or bar value labels do not match the formula's amplitudes |
66
+ | `phase_shift` | The pattern is shifted from its correct position |
67
+ | `frequency_doubling` | The number of oscillations or cycles is wrong |
68
+ | `dc_offset` | The curves or point cloud are shifted away from their correct baseline |
69
+ | `wrong_petal_count` | The number of petals/lobes differs from what the formula produces |
70
+ | `symmetry_mismatch` | The image contains asymmetry that the code cannot produce |
71
+ | `bar_order_swap` | Two bars have had their heights swapped — a bar's value label contradicts the code's heights list |
72
+ | `coefficient_scale` | Polynomial coefficients are scaled but the formula in the spec is unchanged |
73
+ | `wrong_gravity` | Trajectory uses a different gravitational constant than the spec |
74
+ | `wrong_launch_angle` | Trajectory uses a different launch angle than the spec |
75
+ | `wrong_iteration_depth` | L-system rendered with a different iteration count than the spec |
76
+ | `wrong_angle` | L-system rendered with a different turn angle than the spec |
77
+
78
+ ---
79
+
80
+ ## Response Format
81
+
82
+ Respond with **only** this JSON object and nothing else:
83
+
84
+ ```json
85
+ {
86
+ "consistent": true | false,
87
+ "bug_type": "<one label from the table above, or null if consistent>",
88
+ "confidence": "low | medium | high",
89
+ "reasoning": "<1–3 sentences: what you expected vs. what you see>"
90
+ }
91
+ ```
consistent/data_visualization/sample_00122/spec.py ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import matplotlib.pyplot as plt
3
+
4
+ # ── Parameters ─────────────────────────────────────────────────────────────
5
+ seed = 2901
6
+ n_points = 145
7
+
8
+ # ── Data ────────────────────────────────────────────────────────────────────
9
+ x = np.linspace(0.0, 2.0 * np.pi, n_points)
10
+
11
+ y0 = 1.155640 * np.sin(1.302779 * x + 4.981734)
12
+ y1 = 0.911540 * np.sin(2.947745 * x + 2.938028)
13
+ y2 = 0.859045 * np.sin(1.454283 * x + 4.031508)
14
+
15
+ # ── Plot ────────────────────────────────────────────────────────────────────
16
+ fig, ax = plt.subplots(figsize=(7, 4))
17
+ ax.plot(x, y0, color="tab:blue", label="A=1.16, f=1.30, φ=4.98")
18
+ ax.plot(x, y1, color="tab:orange", label="A=0.91, f=2.95, φ=2.94")
19
+ ax.plot(x, y2, color="tab:green", label="A=0.86, f=1.45, φ=4.03")
20
+ ax.set_xlabel("x")
21
+ ax.set_ylabel("y")
22
+ ax.set_title("Sinusoidal Line Plot (3 curve(s))")
23
+ ax.legend(fontsize=8)
24
+ ax.grid(True, alpha=0.3)
25
+ fig.tight_layout()
26
+ plt.show()