generated from stac-extensions/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitem.json
123 lines (123 loc) · 2.79 KB
/
item.json
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/ml-model/v1.0.0/schema.json"
],
"type": "Feature",
"id": "model-item",
"bbox": [
34.18,
0.47,
34.37,
0.71
],
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
34.18,
0.47
],
[
34.37,
0.47
],
[
34.37,
0.71
],
[
34.18,
0.71
],
[
34.18,
0.47
]
]
]
},
"collection": "containing-collection",
"properties": {
"datetime": null,
"start_datetime": "2020-01-01T00:00:00Z",
"end_datetime": "2020-12-12T23:59:59Z",
"license": "MIT",
"providers": [
{
"name": "Natural Resources Canada (Charles Authier)",
"roles": [
"producer"
],
"email": "[email protected]",
"url": "https://nrcan-rncan.gc.ca"
}
],
"ml-model:type": "ml-model",
"ml-model:learning_approach": "supervised",
"ml-model:prediction_type": "object-detection",
"ml-model:architecture": "RCNN",
"ml-model:training-processor-type": "gpu",
"ml-model:training-os": "linux"
},
"links": [
{
"rel": "collection",
"href": "./collection.json",
"type": "application/json",
"title": "Containing Collection"
},
{
"rel": "root",
"href": "./collection.json",
"type": "application/json",
"title": "Containing Collection"
},
{
"rel": "parent",
"href": "./collection.json",
"type": "application/json",
"title": "Containing Collection"
},
{
"rel": "ml-model:inferencing-image",
"href": "registry.hub.docker.com/my-user/my-inferencing-model:v1",
"type": "docker-image",
"title": "My Model (v1)"
},
{
"rel": "ml-model:training-image",
"href": "registry.hub.docker.com/my-user/my-training-model:v1",
"type": "docker-image",
"title": "Image for Training Model"
},
{
"rel": "ml-model:train-data",
"href": "https://some-domain.com/training-data/collection.json",
"type": "application/json",
"title": "Training Data"
},
{
"rel": "ml-model:test-data",
"href": "https://some-domain.com/test-data/collection.json",
"type": "application/json",
"title": "Test Data"
}
],
"assets": {
"model": {
"href": "./inferencing.yml",
"type": "text/x-yaml; application=compose",
"title": "Model inferencing runtime",
"roles": [
"ml-model:inference-runtime"
]
},
"other": {
"href": "https://some-domain.com/another/thing.json",
"type": "application/json",
"title": "Some other asset"
}
}
}