Strudel7182 commited on
Commit
8005607
·
verified ·
1 Parent(s): 70fceb5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +41 -34
README.md CHANGED
@@ -1,36 +1,43 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: prompt
5
- dtype: json
6
- - name: completion
7
- dtype: json
8
- - name: wire_xml
9
- dtype: string
10
- - name: num_segments
11
- dtype: int8
12
- - name: points
13
- dtype:
14
- array2_d:
15
- shape:
16
- - null
17
- - 3
18
- dtype: float32
19
- - name: mesh_binary
20
- dtype: binary
21
- - name: image
22
- dtype: image
23
- - name: depth_map
24
- dtype: image
25
- splits:
26
- - name: train
27
- num_bytes: 1935781248
28
- num_examples: 10000
29
- download_size: 1670013198
30
- dataset_size: 1935781248
31
- configs:
32
- - config_name: default
33
- data_files:
34
- - split: train
35
- path: data/train-*
36
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language: en
3
+ license: mit
4
+ size_categories:
5
+ - 10K
6
+ pretty_name: Random Wires
7
+ tags:
8
+ - synthetic
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  ---
10
+
11
+ ## Generation Parameters
12
+
13
+ | Parameter | Value |
14
+ | --- | --- |
15
+ | seed | 42 |
16
+ | num points | 1000 |
17
+ | test proportion | None |
18
+ | include reasoning | False |
19
+
20
+
21
+ ## System Prompt
22
+ ```
23
+ Please predict the structure of this shape using this XML format:
24
+
25
+ - Use <wire> as the enclosing tags
26
+ - wire must have a diameter attribute of type float
27
+ - wire has two child elements, <transform> and <segments>
28
+ - transform has two child elements, <pos> and <rot>.
29
+ - <pos> and <rot> represent the position and rotation of the start of the wire respectively.
30
+ - <pos> has x, y, and z attributes in the units shown on the images grid overaly.
31
+ - the location of <pos> is shown by the colored axis on the image.
32
+ - <rot> has x, y, z, and w attributes. They are the quaternion in degrees.
33
+ - <segments> is a mixed list of <bend> and <straight> elements.
34
+ - <segments> must have at least one child element.
35
+ - <segments> is a sequence that starts from the colored axis.
36
+ - <bend> tags have angle, radius, and roll attributes. Angle and roll are in degrees, radius is in world units shown by the grid.
37
+ - <straight> just has a length attribute in grid units.
38
+ - All attributes are floats to 1 decimal place.
39
+
40
+ Your goal is to match the shape in the image as closely as possible by predicting the correct sequence of <straight> and <bend> tags and choosing the attribute values.
41
+
42
+ ```
43
+