Fix FilterFiles: add cr:FileObject @id =repo + containedIn for both FileSets
Browse files- croissant.json +11 -0
croissant.json
CHANGED
|
@@ -136,11 +136,21 @@
|
|
| 136 |
}
|
| 137 |
],
|
| 138 |
"distribution": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 139 |
{
|
| 140 |
"@type": "cr:FileSet",
|
| 141 |
"@id": "sim_subset",
|
| 142 |
"name": "sim_subset",
|
| 143 |
"description": "Simulation cases. Each case is a folder containing rendered video frames, instance segmentation, depth, mask, velocity, and physics annotations.",
|
|
|
|
| 144 |
"encodingFormat": "application/octet-stream",
|
| 145 |
"includes": "sim_subset/**/*"
|
| 146 |
},
|
|
@@ -149,6 +159,7 @@
|
|
| 149 |
"@id": "realworld_subset",
|
| 150 |
"name": "realworld_subset",
|
| 151 |
"description": "Realworld cases. Each case is a folder containing a video clip, instance segmentation, mask, velocity reference, and physics annotations.",
|
|
|
|
| 152 |
"encodingFormat": "application/octet-stream",
|
| 153 |
"includes": "realworld_subset/**/*"
|
| 154 |
}
|
|
|
|
| 136 |
}
|
| 137 |
],
|
| 138 |
"distribution": [
|
| 139 |
+
{
|
| 140 |
+
"@type": "cr:FileObject",
|
| 141 |
+
"@id": "repo",
|
| 142 |
+
"name": "repo",
|
| 143 |
+
"description": "The Hugging Face git repository hosting the Apple-Pi dataset.",
|
| 144 |
+
"contentUrl": "https://huggingface.co/datasets/AnonymousSubmitt/apple-pi",
|
| 145 |
+
"encodingFormat": "git+https",
|
| 146 |
+
"sha256": "https://github.com/mlcommons/croissant/issues/80"
|
| 147 |
+
},
|
| 148 |
{
|
| 149 |
"@type": "cr:FileSet",
|
| 150 |
"@id": "sim_subset",
|
| 151 |
"name": "sim_subset",
|
| 152 |
"description": "Simulation cases. Each case is a folder containing rendered video frames, instance segmentation, depth, mask, velocity, and physics annotations.",
|
| 153 |
+
"containedIn": {"@id": "repo"},
|
| 154 |
"encodingFormat": "application/octet-stream",
|
| 155 |
"includes": "sim_subset/**/*"
|
| 156 |
},
|
|
|
|
| 159 |
"@id": "realworld_subset",
|
| 160 |
"name": "realworld_subset",
|
| 161 |
"description": "Realworld cases. Each case is a folder containing a video clip, instance segmentation, mask, velocity reference, and physics annotations.",
|
| 162 |
+
"containedIn": {"@id": "repo"},
|
| 163 |
"encodingFormat": "application/octet-stream",
|
| 164 |
"includes": "realworld_subset/**/*"
|
| 165 |
}
|