forked from alan-turing-institute/plankton-dsg-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scivision.yml
54 lines (50 loc) · 1.87 KB
/
scivision.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
sources:
plankton_single:
description: Load a single labeled images from CEFAS zooplankton dataset
origin:
driver: intake_xarray.image.ImageSource
parameters:
id:
description: which filename
type: str
default: Pia1.2017-10-03.1726+N00296780_hc
args:
# Update with the correct path to the data in the Data Safe Haven
urlpath: '/scratch/data/images/{{id}}.tif'
storage_options: {'anon': True}
exif_tags: True
plankton_multiple:
description: Labeled images from CEFAS zooplankton dataset
origin:
driver: intake_xarray.image.ImageSource
args:
# Update with the correct path to the data in the Data Safe Haven
urlpath: '/scratch/data/images/{filename}'
chunks: {}
storage_options: {'anon': True}
coerce_shape: [832, 1040]
exif_tags: True
labels_raw:
description: >
Contains the classification labels for all images.
IMPORTANT NOTE: only use this data source if you intend to fetch the
labels for ALL of the images (both the test and training set)
origin:
driver: csv
args:
# Update with the correct path to the data in the Data Safe Haven
urlpath: '/scratch/data/index.csv'
labels:
description: Contains a subset of filenames to use as the primary working dataset for the challenge
origin:
driver: csv
args:
# Update with the correct path to the data in the Data Safe Haven
urlpath: '/output/data/partition/train.csv'
labels_holdout:
description: Contains a subset of filenames to be used as the final holdout set, for model assessment
origin:
driver: csv
args:
# Update with the correct path to the data in the Data Safe Haven
urlpath: '/output/data/partition/test.csv'