forked from FederatedAI/FATE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hetero_lr_testsuite.json
106 lines (106 loc) · 3.44 KB
/
hetero_lr_testsuite.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
{
"data": [
{
"file": "examples/data/breast_b.csv",
"head": 1,
"partition": 16,
"table_name": "hetero_breast_b",
"namespace": "hetero_breast_guest",
"role": "guest_0"
},
{
"file": "examples/data/breast_a.csv",
"head": 1,
"partition": 16,
"table_name": "hetero_breast_a",
"namespace": "hetero_breast_host",
"role": "host_0"
},
{
"file": "examples/data/breast_a.csv",
"head": 1,
"partition": 16,
"table_name": "hetero_breast_a",
"namespace": "hetero_breast_host",
"role": "host_1"
},
{
"file": "examples/data/vehicle_scale_b.csv",
"head": 1,
"partition": 16,
"table_name": "hetero_vehicle_b",
"namespace": "hetero_guest_vehicle",
"role": "guest_0"
},
{
"file": "examples/data/vehicle_scale_a.csv",
"head": 1,
"partition": 16,
"table_name": "hetero_vehicle_a",
"namespace": "hetero_host_vehicle",
"role": "host_0"
}
],
"tasks": {
"lr": {
"conf": "test_hetero_lr_train_job_conf.json",
"dsl": "test_hetero_lr_train_job_dsl.json"
},
"lr_validate": {
"conf": "test_hetero_lr_validate_job_conf.json",
"dsl": "test_hetero_lr_validate_job_dsl.json"
},
"lr_cv": {
"conf": "test_hetero_lr_cv_job_conf.json",
"dsl": "test_hetero_lr_cv_job_dsl.json"
},
"lr_one_vs_all": {
"conf": "test_hetero_lr_one_vs_rest_job_conf.json",
"dsl": "test_hetero_lr_train_job_dsl.json"
},
"lr_feature_engineering": {
"conf": "test_lr_with_feature_engineering_job_conf.json",
"dsl": "test_lr_with_feature_engineering_dsl.json"
},
"lr_multi_host": {
"conf": "test_multi_host_job_conf.json",
"dsl": "test_hetero_lr_train_job_dsl.json"
},
"lr_sparse": {
"conf": "test_hetero_lr_sparse_train_job_conf.json",
"dsl": "test_hetero_lr_train_job_dsl.json"
},
"lr_sparse_sqn": {
"conf": "test_hetero_lr_sparse_sqn_train_job_conf.json",
"dsl": "test_hetero_lr_train_job_dsl.json"
},
"lr_ovr_cv": {
"conf": "test_hetero_lr_cv_ovr_job_conf.json",
"dsl": "test_hetero_lr_cv_job_dsl.json"
},
"lr_sparse_cv": {
"conf": "test_hetero_lr_cv_sparse_job_conf.json",
"dsl": "test_hetero_lr_cv_job_dsl.json"
},
"lr_ovr_sqn": {
"conf": "test_hetero_lr_ovr_sqn_job_conf.json",
"dsl": "test_hetero_lr_train_job_dsl.json"
},
"lr_sqn": {
"conf": "test_hetero_lr_sqn_job_conf.json",
"dsl": "test_hetero_lr_train_job_dsl.json"
},
"lr-predict": {
"conf": "test_predict_conf.json",
"deps": "lr"
},
"early_stop_lr": {
"conf": "test_hetero_lr_early_stop_train_job_conf.json",
"dsl": "test_hetero_lr_validate_job_dsl.json"
},
"spark_lr": {
"dsl": "test_hetero_lr_train_job_dsl.json",
"conf": "test_spark_backend_job_conf.json"
}
}
}