-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreprocessing.json
More file actions
27 lines (27 loc) · 879 Bytes
/
preprocessing.json
File metadata and controls
27 lines (27 loc) · 879 Bytes
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
{
"pipeline": {
"project": "example-cloud-project",
"region": "europe-west1",
"zone": "europe-west1-b",
"job_name": "example-weather-forecast-%Y-%m-%d-%H-%M-%S",
"num_workers": 4
},
"data": {
"path": "configs/training/data.sql",
"schema": [
{ "name": "latitude", "kind": "float32", "transform": "z" },
{ "name": "longitude", "kind": "float32", "transform": "z" },
{ "name": "duration", "kind": ["float32"], "transform": "z" },
{ "name": "temperature", "kind": ["float32"], "transform": "z" }
]
},
"modes": [
{ "name": "analysis" },
{ "name": "training", "transform": "analysis", "shuffle": true },
{ "name": "validation", "transform": "analysis" },
{ "name": "testing", "transform": "identity" }
],
"output": {
"path": "gs://example-weather-forecast/data/training/%Y-%m-%d-%H-%M-%S"
}
}