zsprague commited on
Commit
87c0120
·
verified ·
1 Parent(s): 0f75ea4

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +55 -19
README.md CHANGED
@@ -1,21 +1,57 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: caption
7
- dtype: string
8
- - name: name
9
- dtype: string
10
- splits:
11
- - name: train
12
- num_bytes: 93645
13
- num_examples: 2
14
- download_size: 95766
15
- dataset_size: 93645
16
- configs:
17
- - config_name: default
18
- data_files:
19
- - split: train
20
- path: data/train-*
21
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ tags:
4
+ - semantic-distance-coding
5
+ - chart
6
+ - extra-hard
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  ---
8
+
9
+ # sdc-gradient-chart-xhard-v1
10
+
11
+ Gradient chart and heatmap — Extra Hard tier
12
+
13
+ ## Dataset Info
14
+
15
+ - **Rows**: 2
16
+ - **Columns**: 3
17
+
18
+ ## Columns
19
+
20
+ | Column | Type | Description |
21
+ |--------|------|-------------|
22
+ | image | Image(mode=None, decode=True) | Chart PNG |
23
+ | caption | Value('string') | Description |
24
+ | name | Value('string') | Chart ID |
25
+
26
+
27
+ ## Generation Parameters
28
+
29
+ ```json
30
+ {
31
+ "script_name": "run_extra_hard_zero_shot.py",
32
+ "model": "gpt-5-2",
33
+ "description": "Gradient chart and heatmap \u2014 Extra Hard tier",
34
+ "experiment_id": "semantic-distance-coding",
35
+ "artifact_type": "processed_data",
36
+ "visualizer_type": "image",
37
+ "hyperparameters": {},
38
+ "input_datasets": []
39
+ }
40
+ ```
41
+
42
+ ## Experiment Documentation
43
+
44
+ For complete experiment details, see [https://github.com/Zayne-sprague/SC-Research-Notes/tree/main/experiments/semantic-distance-coding](https://github.com/Zayne-sprague/SC-Research-Notes/tree/main/experiments/semantic-distance-coding)
45
+
46
+ ## Usage
47
+
48
+ ```python
49
+ from datasets import load_dataset
50
+
51
+ dataset = load_dataset("reasoning-degeneration-dev/sdc-gradient-chart-xhard-v1", split="train")
52
+ print(f"Loaded {len(dataset)} rows")
53
+ ```
54
+
55
+ ---
56
+
57
+ *This dataset is tracked in [reasoning-degeneration-dev/PROJECT-MANIFEST](https://huggingface.co/datasets/reasoning-degeneration-dev/PROJECT-MANIFEST)*