Datasets:

Modalities:
Geospatial
Languages:
English
DOI:
Libraries:
License:
cmalbrec commited on
Commit
2c8a7d0
·
verified ·
1 Parent(s): ceb6a3d

add Croissant data description

Browse files
Files changed (1) hide show
  1. croissant.json +33 -0
croissant.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": "https://mlcommons.org/croissant/1.0/context.json",
3
+ "@type": "Dataset",
4
+ "name": "ssl4eo_eu_forest",
5
+ "description": "Multi-temporal forest segmentation dataset with GeoTIFF stacks and masks.",
6
+ "data": {
7
+ "@type": "FileSet",
8
+ "fileStructure": {
9
+ "@type": "ParquetFile",
10
+ "url": "index.parquet",
11
+ "fields": [
12
+ {
13
+ "name": "sample_id",
14
+ "type": "string",
15
+ "description": "Unique identifier for each sample."
16
+ },
17
+ {
18
+ "name": "image_paths",
19
+ "type": "array",
20
+ "items": {
21
+ "type": "string"
22
+ },
23
+ "description": "List of paths to multi-temporal GeoTIFF images."
24
+ },
25
+ {
26
+ "name": "mask_path",
27
+ "type": "string",
28
+ "description": "Path to the segmentation mask."
29
+ }
30
+ ]
31
+ }
32
+ }
33
+ }