forked from watson-developer-cloud/python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproblem.json
More file actions
executable file
·122 lines (122 loc) · 2.27 KB
/
problem.json
File metadata and controls
executable file
·122 lines (122 loc) · 2.27 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
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
{
"subject": "phones",
"columns": [
{
"key": "price",
"type": "numeric",
"goal": "min",
"is_objective": true,
"full_name": "Price",
"range": {
"low": 0,
"high": 400
},
"format": "number:2"
},
{
"key": "weight",
"type": "numeric",
"goal": "min",
"is_objective": true,
"full_name": "Weight",
"format": "number:0"
},
{
"key": "brand",
"type": "categorical",
"goal": "min",
"is_objective": true,
"full_name": "Brand",
"range": [
"Apple",
"HTC",
"Samsung",
"Sony"
],
"preference": [
"Samsung",
"Apple",
"HTC"
]
},
{
"key": "rDate",
"type": "datetime",
"goal": "max",
"full_name": "Release Date",
"format": "date: 'MMM dd, yyyy'"
}
],
"options": [
{
"key": "1",
"name": "Samsung Galaxy S4",
"values": {
"price": 249,
"weight": 130,
"brand": "Samsung",
"rDate": "2013-04-29T00:00:00Z"
}
},
{
"key": "2",
"name": "Apple iPhone 5",
"values": {
"price": 349,
"weight": 112,
"brand": "Apple",
"rDate": "2012-09-21T00:00:00Z"
}
},
{
"key": "3",
"name": "HTC One",
"values": {
"price": 299,
"weight": 112,
"brand": "HTC",
"rDate": "2013-03-01T00:00:00Z"
}
},
{
"key": "4",
"name": "Samsung Galaxy S5",
"values": {
"price": 349,
"weight": 135,
"brand": "Samsung",
"rDate": "2014-04-29T00:00:00Z"
}
},
{
"key": "5",
"name": "Apple iPhone 6",
"values": {
"price": 399,
"weight": 118,
"brand": "Apple",
"rDate": "2013-09-21T00:00:00Z"
}
},
{
"key": "6",
"name": "Apple iPhone 7",
"values": {
"price": 499,
"weight": 118,
"brand": "Apple",
"rDate": "2014-09-21T00:00:00Z"
}
},
{
"key": "7",
"name": "Sony Xperia",
"values": {
"price": 199,
"weight": 120,
"brand": "Sony",
"rDate": "2014-08-21T00:00:00Z"
}
}
]
}