This repository was archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathworkflow.json
More file actions
95 lines (95 loc) · 2.43 KB
/
workflow.json
File metadata and controls
95 lines (95 loc) · 2.43 KB
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
{
"description" : "NStack workflow which uses survival analysis to predict churn and buckets users based on propensity to lapse.",
"events" : {
"-LFbtET_o6v5-_mC_inR" : {
"file" : "hazard_by_user.csv",
"message" : "File processed",
"status" : "success",
"timestamp" : "2018-06-25T17:27:57+00:00"
},
"-LFbtOWbFfzKqs137ONH" : {
"message" : "Modelling Started",
"status" : "info",
"timestamp" : "2018-06-25T17:27:36+00:00"
}
},
"name" : "Predict Lapsed Users",
"nodes" : [
{
"id" : "45eb3c13-13be-4d1e-a4aa-661f6a7cd214",
"config" : {
"High" : {
"name" : "High",
"readonly" : true,
"value" : "hazard_index, 0.75",
"visualType" : "Input"
},
"Low" : {
"name" : "Low",
"readonly" : true,
"value" : "hazard_index, 0.25",
"visualType" : "Input"
},
"Medium" : {
"name" : "Medium",
"readonly" : true,
"value" : "hazard_index, 0.50",
"visualType" : "Input"
}
},
"title" : "Bucket"
},
{
"id": "9903EDf9498a83-02b0-43bb-9f13-0f4f9241fe20",
"config" : {
"SQL Query" : {
"name" : "SQL Query",
"readonly" : false,
"value" : "query.sql",
"visualType" : "Input"
}
},
"title" : "BigQuery"
},
{
"id" : "c1e8c9f9-2d31-4cdb-bf5d-332ad86adf51",
"config" : {
"Survival" : {
"name" : "Survival Threshold",
"readonly" : true,
"value" : 7,
"visualType" : "Input"
}
},
"functions" : [ "Predict User Hazard" ],
"title" : "Survival Analysis Model",
"type" : "Model"
},
{
"id" : "f4eb3c13-13be-4d1e-a4aa-661f6a7cd214",
"config" : {
"File Name" : {
"name" : "File Name",
"readonly" : true,
"value" : "output.csv",
"visualType" : "Input"
}
},
"title" : "Create CSV"
}
],
"edges" : [
{
"source" : "9903EDf9498a83-02b0-43bb-9f13-0f4f9241fe20",
"target" : "c1e8c9f9-2d31-4cdb-bf5d-332ad86adf51"
},
{
"source" : "c1e8c9f9-2d31-4cdb-bf5d-332ad86adf51",
"target" : "45eb3c13-13be-4d1e-a4aa-661f6a7cd214"
},
{
"source" : "45eb3c13-13be-4d1e-a4aa-661f6a7cd214",
"target" : "f4eb3c13-13be-4d1e-a4aa-661f6a7cd214"
}
]
}