|
| 1 | +name: "Add a Dataset" |
| 2 | +description: "Submit a new Physical AI / Robotics dataset for inclusion" |
| 3 | +title: "[Dataset] " |
| 4 | +labels: ["add-dataset"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + ## 새 데이터셋 추가 | Add a New Dataset |
| 10 | + 양식을 작성해 주세요. 이슈 등록 후 봇이 자동으로 PR을 생성합니다. |
| 11 | + Please fill in the form. A bot will create a PR automatically. |
| 12 | +
|
| 13 | + - type: input |
| 14 | + id: id |
| 15 | + attributes: |
| 16 | + label: "ID (slug)" |
| 17 | + description: "고유 식별자 (소문자, 하이픈만 사용) | Unique identifier (lowercase, hyphens only)" |
| 18 | + placeholder: "e.g. my-robot-dataset" |
| 19 | + validations: |
| 20 | + required: true |
| 21 | + |
| 22 | + - type: input |
| 23 | + id: name |
| 24 | + attributes: |
| 25 | + label: "Name" |
| 26 | + placeholder: "e.g. MyRobotDataset" |
| 27 | + validations: |
| 28 | + required: true |
| 29 | + |
| 30 | + - type: input |
| 31 | + id: organization |
| 32 | + attributes: |
| 33 | + label: "Organization" |
| 34 | + placeholder: "e.g. UC Berkeley" |
| 35 | + validations: |
| 36 | + required: true |
| 37 | + |
| 38 | + - type: input |
| 39 | + id: year |
| 40 | + attributes: |
| 41 | + label: "Year" |
| 42 | + placeholder: "e.g. 2024" |
| 43 | + validations: |
| 44 | + required: true |
| 45 | + |
| 46 | + - type: textarea |
| 47 | + id: description_en |
| 48 | + attributes: |
| 49 | + label: "Description (English)" |
| 50 | + placeholder: "A dataset of..." |
| 51 | + validations: |
| 52 | + required: true |
| 53 | + |
| 54 | + - type: textarea |
| 55 | + id: description_ko |
| 56 | + attributes: |
| 57 | + label: "Description (Korean)" |
| 58 | + placeholder: "로봇 데이터셋으로..." |
| 59 | + validations: |
| 60 | + required: false |
| 61 | + |
| 62 | + - type: input |
| 63 | + id: github_url |
| 64 | + attributes: |
| 65 | + label: "GitHub URL" |
| 66 | + placeholder: "https://github.com/org/repo" |
| 67 | + |
| 68 | + - type: input |
| 69 | + id: paper_url |
| 70 | + attributes: |
| 71 | + label: "Paper URL (arXiv)" |
| 72 | + placeholder: "https://arxiv.org/abs/xxxx.xxxxx" |
| 73 | + |
| 74 | + - type: input |
| 75 | + id: huggingface_url |
| 76 | + attributes: |
| 77 | + label: "HuggingFace URL" |
| 78 | + placeholder: "https://huggingface.co/datasets/org/name" |
| 79 | + |
| 80 | + - type: input |
| 81 | + id: project_page_url |
| 82 | + attributes: |
| 83 | + label: "Project Page URL" |
| 84 | + placeholder: "https://mydataset.github.io" |
| 85 | + |
| 86 | + - type: checkboxes |
| 87 | + id: categories |
| 88 | + attributes: |
| 89 | + label: "Categories" |
| 90 | + options: |
| 91 | + - label: "manipulation" |
| 92 | + - label: "locomotion" |
| 93 | + - label: "navigation" |
| 94 | + - label: "dexterous" |
| 95 | + - label: "whole-body" |
| 96 | + - label: "aerial" |
| 97 | + validations: |
| 98 | + required: true |
| 99 | + |
| 100 | + - type: checkboxes |
| 101 | + id: hardware_targets |
| 102 | + attributes: |
| 103 | + label: "Hardware Targets" |
| 104 | + options: |
| 105 | + - label: "manipulator" |
| 106 | + - label: "humanoid" |
| 107 | + - label: "quadruped" |
| 108 | + - label: "biped" |
| 109 | + - label: "mobile" |
| 110 | + - label: "drone" |
| 111 | + - label: "hand" |
| 112 | + validations: |
| 113 | + required: true |
| 114 | + |
| 115 | + - type: checkboxes |
| 116 | + id: data_source |
| 117 | + attributes: |
| 118 | + label: "Data Source" |
| 119 | + options: |
| 120 | + - label: "real" |
| 121 | + - label: "simulation" |
| 122 | + - label: "teleoperation" |
| 123 | + - label: "human_demo" |
| 124 | + - label: "mocap" |
| 125 | + validations: |
| 126 | + required: true |
| 127 | + |
| 128 | + - type: checkboxes |
| 129 | + id: modality |
| 130 | + attributes: |
| 131 | + label: "Modality" |
| 132 | + options: |
| 133 | + - label: "rgb" |
| 134 | + - label: "rgbd" |
| 135 | + - label: "depth" |
| 136 | + - label: "lidar" |
| 137 | + - label: "tactile" |
| 138 | + - label: "proprioception" |
| 139 | + - label: "audio" |
| 140 | + - label: "force_torque" |
| 141 | + validations: |
| 142 | + required: true |
| 143 | + |
| 144 | + - type: input |
| 145 | + id: number_of_trajectories |
| 146 | + attributes: |
| 147 | + label: "Number of Trajectories" |
| 148 | + placeholder: "e.g. 50000" |
| 149 | + |
| 150 | + - type: input |
| 151 | + id: total_hours |
| 152 | + attributes: |
| 153 | + label: "Total Hours of Data" |
| 154 | + placeholder: "e.g. 200" |
| 155 | + |
| 156 | + - type: input |
| 157 | + id: number_of_environments |
| 158 | + attributes: |
| 159 | + label: "Number of Environments / Tasks" |
| 160 | + placeholder: "e.g. 24" |
| 161 | + |
| 162 | + - type: input |
| 163 | + id: number_of_robot_types |
| 164 | + attributes: |
| 165 | + label: "Number of Robot Types" |
| 166 | + placeholder: "e.g. 3" |
| 167 | + |
| 168 | + - type: input |
| 169 | + id: tags |
| 170 | + attributes: |
| 171 | + label: "Tags (optional)" |
| 172 | + placeholder: "e.g. large-scale, multi-robot, in-the-wild" |
| 173 | + |
| 174 | + - type: checkboxes |
| 175 | + id: checklist |
| 176 | + attributes: |
| 177 | + label: "Checklist" |
| 178 | + options: |
| 179 | + - label: "The dataset is publicly available" |
| 180 | + required: true |
| 181 | + - label: "At least one URL (GitHub, paper, or HuggingFace) is provided" |
| 182 | + required: true |
| 183 | + - label: "I have read the contribution guidelines" |
| 184 | + required: true |
0 commit comments