big_ml 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. data/.gitignore +19 -0
  2. data/.rspec +2 -0
  3. data/.rvmrc +1 -0
  4. data/.rvmrc.example +1 -0
  5. data/.travis.yml +4 -0
  6. data/CHANGELOG.md +8 -0
  7. data/Gemfile +4 -0
  8. data/LICENSE +22 -0
  9. data/README.md +49 -0
  10. data/Rakefile +6 -0
  11. data/TODO.md +6 -0
  12. data/big_ml.gemspec +23 -0
  13. data/lib/big_ml/authenticable.rb +10 -0
  14. data/lib/big_ml/base.rb +51 -0
  15. data/lib/big_ml/client.rb +29 -0
  16. data/lib/big_ml/config.rb +30 -0
  17. data/lib/big_ml/dataset.rb +19 -0
  18. data/lib/big_ml/model.rb +21 -0
  19. data/lib/big_ml/prediction.rb +19 -0
  20. data/lib/big_ml/request.rb +29 -0
  21. data/lib/big_ml/source.rb +18 -0
  22. data/lib/big_ml/version.rb +3 -0
  23. data/lib/big_ml.rb +13 -0
  24. data/spec/fixtures/iris.csv +151 -0
  25. data/spec/integration/dataset_spec.rb +51 -0
  26. data/spec/integration/model_spec.rb +53 -0
  27. data/spec/integration/prediction_spec.rb +55 -0
  28. data/spec/integration/source_spec.rb +55 -0
  29. data/spec/spec_helper.rb +22 -0
  30. data/spec/units/client_spec.rb +50 -0
  31. data/spec/units/source_spec.rb +20 -0
  32. data/spec/vcr_cassettes/BigML_Dataset/no_dataset/_all/must_be_empty.yml +136 -0
  33. data/spec/vcr_cassettes/BigML_Dataset/one_dataset/must_be_able_to_be_find_using_the_reference.yml +293 -0
  34. data/spec/vcr_cassettes/BigML_Dataset/one_dataset/must_be_able_to_remove_the_dataset.yml +318 -0
  35. data/spec/vcr_cassettes/BigML_Dataset/one_dataset/must_be_able_to_update_the_name.yml +360 -0
  36. data/spec/vcr_cassettes/BigML_Dataset/one_dataset/must_have_only_one_item.yml +265 -0
  37. data/spec/vcr_cassettes/BigML_Dataset/one_dataset/must_have_the_same_file_name.yml +265 -0
  38. data/spec/vcr_cassettes/BigML_Dataset/one_dataset/was_created_successfully.yml +149 -0
  39. data/spec/vcr_cassettes/BigML_Model/no_model/_all/must_be_empty.yml +166 -0
  40. data/spec/vcr_cassettes/BigML_Model/one_model/must_be_able_to_be_find_using_the_reference.yml +446 -0
  41. data/spec/vcr_cassettes/BigML_Model/one_model/must_be_able_to_remove_the_model.yml +426 -0
  42. data/spec/vcr_cassettes/BigML_Model/one_model/must_be_able_to_update_the_name.yml +558 -0
  43. data/spec/vcr_cassettes/BigML_Model/one_model/must_have_only_one_item.yml +258 -0
  44. data/spec/vcr_cassettes/BigML_Model/one_model/must_have_the_same_file_name.yml +375 -0
  45. data/spec/vcr_cassettes/BigML_Model/one_model/must_have_the_same_size.yml +375 -0
  46. data/spec/vcr_cassettes/BigML_Model/one_model/was_created_successfully.yml +298 -0
  47. data/spec/vcr_cassettes/BigML_Prediction/no_prediction/_all/must_be_empty.yml +305 -0
  48. data/spec/vcr_cassettes/BigML_Prediction/one_prediction/must_be_able_to_be_find_using_the_reference.yml +502 -0
  49. data/spec/vcr_cassettes/BigML_Prediction/one_prediction/must_be_able_to_remove_the_prediction.yml +547 -0
  50. data/spec/vcr_cassettes/BigML_Prediction/one_prediction/must_be_able_to_update_the_name.yml +546 -0
  51. data/spec/vcr_cassettes/BigML_Prediction/one_prediction/must_have_only_one_item.yml +503 -0
  52. data/spec/vcr_cassettes/BigML_Prediction/one_prediction/must_have_the_same_name.yml +420 -0
  53. data/spec/vcr_cassettes/BigML_Prediction/one_prediction/was_created_successfully.yml +297 -0
  54. data/spec/vcr_cassettes/BigML_Source/no_source/_all/must_be_empty.yml +136 -0
  55. data/spec/vcr_cassettes/BigML_Source/one_source/must_be_able_to_be_find_using_the_reference.yml +191 -0
  56. data/spec/vcr_cassettes/BigML_Source/one_source/must_be_able_to_remove_the_source.yml +195 -0
  57. data/spec/vcr_cassettes/BigML_Source/one_source/must_be_able_to_update_the_name.yml +279 -0
  58. data/spec/vcr_cassettes/BigML_Source/one_source/must_have_only_one_item.yml +192 -0
  59. data/spec/vcr_cassettes/BigML_Source/one_source/must_have_the_same_file_name.yml +192 -0
  60. data/spec/vcr_cassettes/BigML_Source/one_source/was_created_successfully.yml +105 -0
  61. metadata +224 -0
@@ -0,0 +1,558 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://bigml.io/andromeda/source?username=<USERNAME>&api_key=<API_KEY>
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ connection:
11
+ - close
12
+ response:
13
+ status:
14
+ code: 200
15
+ message: OK
16
+ headers:
17
+ content-type:
18
+ - application/json; charset=utf-8
19
+ date:
20
+ - Wed, 20 Jun 2012 03:54:22 GMT
21
+ server:
22
+ - nginx/1.0.12
23
+ content-length:
24
+ - '1280'
25
+ connection:
26
+ - Close
27
+ body:
28
+ encoding: US-ASCII
29
+ string: ! '{"meta": {"limit": 20, "next": null, "offset": 0, "previous": null,
30
+ "total_count": 1}, "objects": [{"category": 0, "code": 200, "content_type":
31
+ "application/octet-stream", "created": "2012-06-20T03:58:24.957000", "credits":
32
+ 0.0, "description": "", "fields": {"000000": {"column_number": 0, "name":
33
+ "sepal length", "optype": "numeric"}, "000001": {"column_number": 1, "name":
34
+ "sepal width", "optype": "numeric"}, "000002": {"column_number": 2, "name":
35
+ "petal length", "optype": "numeric"}, "000003": {"column_number": 3, "name":
36
+ "petal width", "optype": "numeric"}, "000004": {"column_number": 4, "name":
37
+ "species", "optype": "categorical"}}, "file_name": "iris.csv", "md5": "d1175c032e1042bec7f974c91e4a65ae",
38
+ "name": "iris.csv", "number_of_datasets": 1, "number_of_models": 1, "number_of_predictions":
39
+ 0, "private": true, "resource": "source/4fe14a601552687d4200014b", "size":
40
+ 4608, "source_parser": {"header": true, "locale": "en_US", "missing_tokens":
41
+ ["", "N/A", "n/a", "NULL", "null", "-", "#DIV/0", "#REF!", "#NAME?", "NIL",
42
+ "nil", "NA", "na", "#VALUE!", "#NULL!", "NaN", "#N/A", "#NUM!", "?"], "quote":
43
+ "\"", "separator": ","}, "status": {"code": 5, "elapsed": 67, "message": "The
44
+ source has been created"}, "tags": [], "type": 0, "updated": "2012-06-20T03:57:59.673000"}]}'
45
+ http_version: '1.1'
46
+ recorded_at: Wed, 20 Jun 2012 03:58:13 GMT
47
+ - request:
48
+ method: delete
49
+ uri: https://bigml.io/andromeda/source/4fe14a601552687d4200014b?username=<USERNAME>&api_key=<API_KEY>
50
+ body:
51
+ encoding: US-ASCII
52
+ string: ''
53
+ headers:
54
+ connection:
55
+ - close
56
+ response:
57
+ status:
58
+ code: 204
59
+ message: NO CONTENT
60
+ headers:
61
+ content-length:
62
+ - '0'
63
+ content-type:
64
+ - text/html; charset=utf-8
65
+ date:
66
+ - Wed, 20 Jun 2012 03:56:43 GMT
67
+ server:
68
+ - nginx/1.0.12
69
+ connection:
70
+ - Close
71
+ body:
72
+ encoding: US-ASCII
73
+ string: ''
74
+ http_version: '1.1'
75
+ recorded_at: Wed, 20 Jun 2012 03:58:14 GMT
76
+ - request:
77
+ method: get
78
+ uri: https://bigml.io/andromeda/dataset?username=<USERNAME>&api_key=<API_KEY>
79
+ body:
80
+ encoding: US-ASCII
81
+ string: ''
82
+ headers:
83
+ connection:
84
+ - close
85
+ response:
86
+ status:
87
+ code: 200
88
+ message: OK
89
+ headers:
90
+ content-type:
91
+ - application/json; charset=utf-8
92
+ date:
93
+ - Wed, 20 Jun 2012 03:54:25 GMT
94
+ server:
95
+ - nginx/1.0.12
96
+ content-length:
97
+ - '703'
98
+ connection:
99
+ - Close
100
+ body:
101
+ encoding: US-ASCII
102
+ string: ! '{"meta": {"limit": 20, "next": null, "offset": 0, "previous": null,
103
+ "total_count": 1}, "objects": [{"category": 0, "code": 200, "columns": 5,
104
+ "created": "2012-06-20T03:58:26.532000", "credits": 0.0087890625, "description":
105
+ "", "locale": "en_US", "name": "iris'' dataset", "number_of_models": 1, "number_of_predictions":
106
+ 0, "private": true, "resource": "dataset/4fe14a621552687d4700010e", "rows":
107
+ 150, "size": 4608, "source": "source/4fe14a601552687d4200014b", "source_status":
108
+ false, "status": {"bytes": 4608, "code": 5, "elapsed": 266, "field_errors":
109
+ [], "message": "The dataset has been created", "row_format_errors": [], "serialized_rows":
110
+ 150}, "tags": [], "updated": "2012-06-20T03:57:59.680000"}]}'
111
+ http_version: '1.1'
112
+ recorded_at: Wed, 20 Jun 2012 03:58:15 GMT
113
+ - request:
114
+ method: delete
115
+ uri: https://bigml.io/andromeda/dataset/4fe14a621552687d4700010e?username=<USERNAME>&api_key=<API_KEY>
116
+ body:
117
+ encoding: US-ASCII
118
+ string: ''
119
+ headers:
120
+ connection:
121
+ - close
122
+ response:
123
+ status:
124
+ code: 204
125
+ message: NO CONTENT
126
+ headers:
127
+ content-length:
128
+ - '0'
129
+ content-type:
130
+ - text/html; charset=utf-8
131
+ date:
132
+ - Wed, 20 Jun 2012 03:56:46 GMT
133
+ server:
134
+ - nginx/1.0.12
135
+ connection:
136
+ - Close
137
+ body:
138
+ encoding: US-ASCII
139
+ string: ''
140
+ http_version: '1.1'
141
+ recorded_at: Wed, 20 Jun 2012 03:58:17 GMT
142
+ - request:
143
+ method: get
144
+ uri: https://bigml.io/andromeda/model?username=<USERNAME>&api_key=<API_KEY>
145
+ body:
146
+ encoding: US-ASCII
147
+ string: ''
148
+ headers:
149
+ connection:
150
+ - close
151
+ response:
152
+ status:
153
+ code: 200
154
+ message: OK
155
+ headers:
156
+ content-type:
157
+ - application/json; charset=utf-8
158
+ date:
159
+ - Wed, 20 Jun 2012 03:54:27 GMT
160
+ server:
161
+ - nginx/1.0.12
162
+ content-length:
163
+ - '843'
164
+ connection:
165
+ - Close
166
+ body:
167
+ encoding: US-ASCII
168
+ string: ! '{"meta": {"limit": 20, "next": null, "offset": 0, "previous": null,
169
+ "total_count": 1}, "objects": [{"category": 0, "code": 200, "columns": 5,
170
+ "created": "2012-06-20T03:57:59.668000", "credits": 0.03515625, "dataset":
171
+ "dataset/4fe14a621552687d4700010e", "dataset_status": false, "description":
172
+ "", "holdout": 0.0, "input_fields": ["000000", "000001", "000002", "000003"],
173
+ "locale": "en_US", "max_columns": 5, "max_rows": 150, "name": "iris'' dataset
174
+ model", "number_of_predictions": 0, "objective_fields": ["000004"], "private":
175
+ true, "range": [1, 150], "resource": "model/4fe14a47035d074a1b000115", "rows":
176
+ 150, "size": 4608, "source": "source/4fe14a601552687d4200014b", "source_status":
177
+ false, "status": {"code": 5, "elapsed": 153, "message": "The model has been
178
+ created", "progress": 1}, "tags": [], "updated": "2012-06-20T03:58:00.950000"}]}'
179
+ http_version: '1.1'
180
+ recorded_at: Wed, 20 Jun 2012 03:58:18 GMT
181
+ - request:
182
+ method: delete
183
+ uri: https://bigml.io/andromeda/model/4fe14a47035d074a1b000115?username=<USERNAME>&api_key=<API_KEY>
184
+ body:
185
+ encoding: US-ASCII
186
+ string: ''
187
+ headers:
188
+ connection:
189
+ - close
190
+ response:
191
+ status:
192
+ code: 204
193
+ message: NO CONTENT
194
+ headers:
195
+ content-length:
196
+ - '0'
197
+ content-type:
198
+ - text/html; charset=utf-8
199
+ date:
200
+ - Wed, 20 Jun 2012 03:56:48 GMT
201
+ server:
202
+ - nginx/1.0.12
203
+ connection:
204
+ - Close
205
+ body:
206
+ encoding: US-ASCII
207
+ string: ''
208
+ http_version: '1.1'
209
+ recorded_at: Wed, 20 Jun 2012 03:58:19 GMT
210
+ - request:
211
+ method: post
212
+ uri: https://bigml.io/andromeda/source
213
+ body:
214
+ encoding: US-ASCII
215
+ string: ''
216
+ headers:
217
+ content-type:
218
+ - multipart/form-data; boundary=-----------RubyMultipartPost
219
+ content-length:
220
+ - '5147'
221
+ connection:
222
+ - close
223
+ response:
224
+ status:
225
+ code: 201
226
+ message: CREATED
227
+ headers:
228
+ content-type:
229
+ - application/json; charset=utf-8
230
+ date:
231
+ - Wed, 20 Jun 2012 03:54:30 GMT
232
+ location:
233
+ - http://bigml.io/andromeda/source/4fe14a51035d074a21000148
234
+ server:
235
+ - nginx/1.0.12
236
+ transfer-encoding:
237
+ - chunked
238
+ connection:
239
+ - Close
240
+ body:
241
+ encoding: US-ASCII
242
+ string: ! '{"category": 0, "code": 201, "content_type": "application/octet-stream",
243
+ "created": "2012-06-20T03:58:09.524465", "credits": 0.0, "description": "",
244
+ "file_name": "iris.csv", "md5": "d1175c032e1042bec7f974c91e4a65ae", "name":
245
+ "iris.csv", "number_of_datasets": 0, "number_of_models": 0, "number_of_predictions":
246
+ 0, "private": true, "resource": "source/4fe14a51035d074a21000148", "size":
247
+ 4608, "source_parser": {}, "status": {"code": 1, "message": "The request has
248
+ been queued and will be processed soon"}, "tags": [], "type": 0, "updated":
249
+ "2012-06-20T03:58:09.524492"}'
250
+ http_version: '1.1'
251
+ recorded_at: Wed, 20 Jun 2012 03:58:20 GMT
252
+ - request:
253
+ method: post
254
+ uri: https://bigml.io/andromeda/dataset?username=<USERNAME>&api_key=<API_KEY>
255
+ body:
256
+ encoding: UTF-8
257
+ string: ! '{"source":"source/4fe14a51035d074a21000148"}'
258
+ headers:
259
+ content-type:
260
+ - application/json
261
+ connection:
262
+ - close
263
+ response:
264
+ status:
265
+ code: 201
266
+ message: CREATED
267
+ headers:
268
+ content-type:
269
+ - application/json; charset=utf-8
270
+ date:
271
+ - Wed, 20 Jun 2012 03:56:51 GMT
272
+ location:
273
+ - http://bigml.io/andromeda/dataset/4fe14a52035d074a1e0000fd
274
+ server:
275
+ - nginx/1.0.12
276
+ content-length:
277
+ - '920'
278
+ connection:
279
+ - Close
280
+ body:
281
+ encoding: US-ASCII
282
+ string: ! '{"category": 0, "code": 201, "columns": 5, "created": "2012-06-20T03:58:10.771492",
283
+ "credits": 0.0087890625, "description": "", "fields": {"000000": {"column_number":
284
+ 0, "name": "sepal length", "optype": "numeric"}, "000001": {"column_number":
285
+ 1, "name": "sepal width", "optype": "numeric"}, "000002": {"column_number":
286
+ 2, "name": "petal length", "optype": "numeric"}, "000003": {"column_number":
287
+ 3, "name": "petal width", "optype": "numeric"}, "000004": {"column_number":
288
+ 4, "name": "species", "optype": "categorical"}}, "locale": "en_US", "name":
289
+ "iris'' dataset", "number_of_models": 0, "number_of_predictions": 0, "private":
290
+ true, "resource": "dataset/4fe14a52035d074a1e0000fd", "rows": 0, "size": 4608,
291
+ "source": "source/4fe14a51035d074a21000148", "source_status": true, "status":
292
+ {"code": 1, "message": "The dataset is being processed and will be created
293
+ soon"}, "tags": [], "updated": "2012-06-20T03:58:10.771512"}'
294
+ http_version: '1.1'
295
+ recorded_at: Wed, 20 Jun 2012 03:58:22 GMT
296
+ - request:
297
+ method: post
298
+ uri: https://bigml.io/andromeda/model?username=<USERNAME>&api_key=<API_KEY>
299
+ body:
300
+ encoding: UTF-8
301
+ string: ! '{"dataset":"dataset/4fe14a52035d074a1e0000fd"}'
302
+ headers:
303
+ content-type:
304
+ - application/json
305
+ connection:
306
+ - close
307
+ response:
308
+ status:
309
+ code: 201
310
+ message: CREATED
311
+ headers:
312
+ content-type:
313
+ - application/json; charset=utf-8
314
+ date:
315
+ - Wed, 20 Jun 2012 03:54:33 GMT
316
+ location:
317
+ - http://bigml.io/andromeda/model/4fe14a701552687d4500014f
318
+ server:
319
+ - nginx/1.0.12
320
+ content-length:
321
+ - '690'
322
+ connection:
323
+ - Close
324
+ body:
325
+ encoding: US-ASCII
326
+ string: ! '{"category": 0, "code": 201, "columns": 5, "created": "2012-06-20T03:58:40.600176",
327
+ "credits": 0.03515625, "dataset": "dataset/4fe14a52035d074a1e0000fd", "dataset_status":
328
+ true, "description": "", "holdout": 0.0, "input_fields": [], "locale": "en_US",
329
+ "max_columns": 5, "max_rows": 150, "name": "iris'' dataset model", "number_of_predictions":
330
+ 0, "objective_fields": [], "private": true, "range": [1, 150], "resource":
331
+ "model/4fe14a701552687d4500014f", "rows": 150, "size": 4608, "source": "source/4fe14a51035d074a21000148",
332
+ "source_status": true, "status": {"code": 1, "message": "The model is being
333
+ processed and will be created soon"}, "tags": [], "updated": "2012-06-20T03:58:40.600196"}'
334
+ http_version: '1.1'
335
+ recorded_at: Wed, 20 Jun 2012 03:58:23 GMT
336
+ - request:
337
+ method: put
338
+ uri: https://bigml.io/andromeda/model/4fe14a701552687d4500014f?username=<USERNAME>&api_key=<API_KEY>
339
+ body:
340
+ encoding: UTF-8
341
+ string: ! '{"name":"foo name"}'
342
+ headers:
343
+ content-type:
344
+ - application/json
345
+ connection:
346
+ - close
347
+ response:
348
+ status:
349
+ code: 202
350
+ message: ACCEPTED
351
+ headers:
352
+ content-type:
353
+ - application/json; charset=utf-8
354
+ date:
355
+ - Wed, 20 Jun 2012 03:56:54 GMT
356
+ server:
357
+ - nginx/1.0.12
358
+ content-length:
359
+ - '6503'
360
+ connection:
361
+ - Close
362
+ body:
363
+ encoding: US-ASCII
364
+ string: ! '{"category": 0, "code": 202, "columns": 5, "created": "2012-06-20T03:58:40.600000",
365
+ "credits": 0.03515625, "dataset": "dataset/4fe14a52035d074a1e0000fd", "dataset_status":
366
+ true, "description": "", "holdout": 0.0, "input_fields": ["000000", "000001",
367
+ "000002", "000003"], "locale": "en_US", "max_columns": 5, "max_rows": 150,
368
+ "model": {"fields": {"000000": {"column_number": 0, "datatype": "double",
369
+ "name": "sepal length", "optype": "numeric", "preferred": true, "summary":
370
+ {"maximum": 7.9, "median": 5.77889, "minimum": 4.3, "missing_count": 0, "population":
371
+ 150, "splits": [4.51526, 4.67252, 4.81113, 4.89582, 4.96139, 5.01131, 5.05992,
372
+ 5.11148, 5.18177, 5.35681, 5.44129, 5.5108, 5.58255, 5.65532, 5.71658, 5.77889,
373
+ 5.85381, 5.97078, 6.05104, 6.13074, 6.23023, 6.29578, 6.35078, 6.41459, 6.49383,
374
+ 6.63013, 6.70719, 6.79218, 6.92597, 7.20423, 7.64746], "sum": 876.5, "sum_squares":
375
+ 5223.85}}, "000001": {"column_number": 1, "datatype": "double", "name": "sepal
376
+ width", "optype": "numeric", "preferred": true, "summary": {"counts": [[2,
377
+ 1], [2.2, 3], [2.3, 4], [2.4, 3], [2.5, 8], [2.6, 5], [2.7, 9], [2.8, 14],
378
+ [2.9, 10], [3, 26], [3.1, 11], [3.2, 13], [3.3, 6], [3.4, 12], [3.5, 6], [3.6,
379
+ 4], [3.7, 3], [3.8, 6], [3.9, 2], [4, 1], [4.1, 1], [4.2, 1], [4.4, 1]], "maximum":
380
+ 4.4, "median": 3.02044, "minimum": 2, "missing_count": 0, "population": 150,
381
+ "sum": 458.6, "sum_squares": 1430.4}}, "000002": {"column_number": 2, "datatype":
382
+ "double", "name": "petal length", "optype": "numeric", "preferred": true,
383
+ "summary": {"maximum": 6.9, "median": 4.34142, "minimum": 1, "missing_count":
384
+ 0, "population": 150, "splits": [1.25138, 1.32426, 1.37171, 1.40962, 1.44567,
385
+ 1.48173, 1.51859, 1.56301, 1.6255, 1.74645, 3.23033, 3.675, 3.94203, 4.0469,
386
+ 4.18243, 4.34142, 4.45309, 4.51823, 4.61771, 4.72566, 4.83445, 4.93363, 5.03807,
387
+ 5.1064, 5.20938, 5.43979, 5.5744, 5.6646, 5.81496, 6.02913, 6.38125], "sum":
388
+ 563.7, "sum_squares": 2582.71}}, "000003": {"column_number": 3, "datatype":
389
+ "double", "name": "petal width", "optype": "numeric", "preferred": true, "summary":
390
+ {"counts": [[0.1, 5], [0.2, 29], [0.3, 7], [0.4, 7], [0.5, 1], [0.6, 1], [1,
391
+ 7], [1.1, 3], [1.2, 5], [1.3, 13], [1.4, 8], [1.5, 12], [1.6, 4], [1.7, 2],
392
+ [1.8, 12], [1.9, 5], [2, 6], [2.1, 6], [2.2, 3], [2.3, 8], [2.4, 3], [2.5,
393
+ 3]], "maximum": 2.5, "median": 1.32848, "minimum": 0.1, "missing_count": 0,
394
+ "population": 150, "sum": 179.9, "sum_squares": 302.33}}, "000004": {"column_number":
395
+ 4, "datatype": "string", "name": "species", "optype": "categorical", "preferred":
396
+ true, "summary": {"categories": [["Iris-versicolor", 50], ["Iris-setosa",
397
+ 50], ["Iris-virginica", 50]], "missing_count": 0}}}, "kind": "stree", "locale":
398
+ "en_US", "missing_strategy": "last_prediction", "root": {"children": [{"children":
399
+ [{"children": [{"count": 38, "distribution": [["Iris-virginica", 38]], "leaf":
400
+ true, "output": "Iris-virginica", "predicate": {"field": "000002", "operator":
401
+ ">", "value": 5.05}}, {"children": [{"children": [{"children": [{"count":
402
+ 1, "distribution": [["Iris-versicolor", 1]], "leaf": true, "output": "Iris-versicolor",
403
+ "predicate": {"field": "000002", "operator": ">", "value": 4.95}}, {"count":
404
+ 2, "distribution": [["Iris-virginica", 2]], "leaf": true, "output": "Iris-virginica",
405
+ "predicate": {"field": "000002", "operator": "<=", "value": 4.95}}], "count":
406
+ 3, "distribution": [["Iris-virginica", 2], ["Iris-versicolor", 1]], "output":
407
+ "Iris-virginica", "predicate": {"field": "000000", "operator": ">", "value":
408
+ 5.95}}, {"count": 1, "distribution": [["Iris-versicolor", 1]], "leaf": true,
409
+ "output": "Iris-versicolor", "predicate": {"field": "000000", "operator":
410
+ "<=", "value": 5.95}}], "count": 4, "distribution": [["Iris-virginica", 2],
411
+ ["Iris-versicolor", 2]], "output": "Iris-virginica", "predicate": {"field":
412
+ "000001", "operator": ">", "value": 2.9}}, {"count": 6, "distribution": [["Iris-virginica",
413
+ 6]], "leaf": true, "output": "Iris-virginica", "predicate": {"field": "000001",
414
+ "operator": "<=", "value": 2.9}}], "count": 10, "distribution": [["Iris-virginica",
415
+ 8], ["Iris-versicolor", 2]], "output": "Iris-virginica", "predicate": {"field":
416
+ "000002", "operator": "<=", "value": 5.05}}], "count": 48, "distribution":
417
+ [["Iris-virginica", 46], ["Iris-versicolor", 2]], "output": "Iris-virginica",
418
+ "predicate": {"field": "000003", "operator": ">", "value": 1.65}}, {"children":
419
+ [{"children": [{"count": 3, "distribution": [["Iris-virginica", 3]], "leaf":
420
+ true, "output": "Iris-virginica", "predicate": {"field": "000000", "operator":
421
+ ">", "value": 6.05}}, {"children": [{"count": 1, "distribution": [["Iris-versicolor",
422
+ 1]], "leaf": true, "output": "Iris-versicolor", "predicate": {"field": "000001",
423
+ "operator": ">", "value": 2.45}}, {"count": 1, "distribution": [["Iris-virginica",
424
+ 1]], "leaf": true, "output": "Iris-virginica", "predicate": {"field": "000001",
425
+ "operator": "<=", "value": 2.45}}], "count": 2, "distribution": [["Iris-virginica",
426
+ 1], ["Iris-versicolor", 1]], "output": "Iris-virginica", "predicate": {"field":
427
+ "000000", "operator": "<=", "value": 6.05}}], "count": 5, "distribution":
428
+ [["Iris-virginica", 4], ["Iris-versicolor", 1]], "output": "Iris-virginica",
429
+ "predicate": {"field": "000002", "operator": ">", "value": 4.95}}, {"count":
430
+ 47, "distribution": [["Iris-versicolor", 47]], "leaf": true, "output": "Iris-versicolor",
431
+ "predicate": {"field": "000002", "operator": "<=", "value": 4.95}}], "count":
432
+ 52, "distribution": [["Iris-virginica", 4], ["Iris-versicolor", 48]], "output":
433
+ "Iris-versicolor", "predicate": {"field": "000003", "operator": "<=", "value":
434
+ 1.65}}], "count": 100, "distribution": [["Iris-virginica", 50], ["Iris-versicolor",
435
+ 50]], "output": "Iris-virginica", "predicate": {"field": "000002", "operator":
436
+ ">", "value": 2.45}}, {"count": 50, "distribution": [["Iris-setosa", 50]],
437
+ "leaf": true, "output": "Iris-setosa", "predicate": {"field": "000002", "operator":
438
+ "<=", "value": 2.45}}], "count": 150, "distribution": [["Iris-virginica",
439
+ 50], ["Iris-versicolor", 50], ["Iris-setosa", 50]], "output": "Iris-virginica",
440
+ "predicate": true}, "row_range": {"size": 150, "start": 0}}, "name": "foo
441
+ name", "number_of_predictions": 0, "objective_fields": ["000004"], "private":
442
+ true, "range": [1, 150], "resource": "model/4fe14a701552687d4500014f", "rows":
443
+ 150, "size": 4608, "source": "source/4fe14a51035d074a21000148", "source_status":
444
+ true, "status": {"code": 5, "elapsed": 147, "message": "The model has been
445
+ created", "progress": 1}, "tags": [], "updated": "2012-06-20T03:58:41.915123"}'
446
+ http_version: '1.1'
447
+ recorded_at: Wed, 20 Jun 2012 03:58:25 GMT
448
+ - request:
449
+ method: get
450
+ uri: https://bigml.io/andromeda/model/4fe14a701552687d4500014f?username=<USERNAME>&api_key=<API_KEY>
451
+ body:
452
+ encoding: US-ASCII
453
+ string: ''
454
+ headers:
455
+ connection:
456
+ - close
457
+ response:
458
+ status:
459
+ code: 200
460
+ message: OK
461
+ headers:
462
+ content-type:
463
+ - application/json; charset=utf-8
464
+ date:
465
+ - Wed, 20 Jun 2012 03:54:35 GMT
466
+ server:
467
+ - nginx/1.0.12
468
+ transfer-encoding:
469
+ - chunked
470
+ connection:
471
+ - Close
472
+ body:
473
+ encoding: US-ASCII
474
+ string: ! '{"category": 0, "code": 200, "columns": 5, "created": "2012-06-20T03:58:40.600000",
475
+ "credits": 0.03515625, "dataset": "dataset/4fe14a52035d074a1e0000fd", "dataset_status":
476
+ true, "description": "", "holdout": 0.0, "input_fields": ["000000", "000001",
477
+ "000002", "000003"], "locale": "en_US", "max_columns": 5, "max_rows": 150,
478
+ "model": {"fields": {"000000": {"column_number": 0, "datatype": "double",
479
+ "name": "sepal length", "optype": "numeric", "preferred": true, "summary":
480
+ {"maximum": 7.9, "median": 5.77889, "minimum": 4.3, "missing_count": 0, "population":
481
+ 150, "splits": [4.51526, 4.67252, 4.81113, 4.89582, 4.96139, 5.01131, 5.05992,
482
+ 5.11148, 5.18177, 5.35681, 5.44129, 5.5108, 5.58255, 5.65532, 5.71658, 5.77889,
483
+ 5.85381, 5.97078, 6.05104, 6.13074, 6.23023, 6.29578, 6.35078, 6.41459, 6.49383,
484
+ 6.63013, 6.70719, 6.79218, 6.92597, 7.20423, 7.64746], "sum": 876.5, "sum_squares":
485
+ 5223.85}}, "000001": {"column_number": 1, "datatype": "double", "name": "sepal
486
+ width", "optype": "numeric", "preferred": true, "summary": {"counts": [[2,
487
+ 1], [2.2, 3], [2.3, 4], [2.4, 3], [2.5, 8], [2.6, 5], [2.7, 9], [2.8, 14],
488
+ [2.9, 10], [3, 26], [3.1, 11], [3.2, 13], [3.3, 6], [3.4, 12], [3.5, 6], [3.6,
489
+ 4], [3.7, 3], [3.8, 6], [3.9, 2], [4, 1], [4.1, 1], [4.2, 1], [4.4, 1]], "maximum":
490
+ 4.4, "median": 3.02044, "minimum": 2, "missing_count": 0, "population": 150,
491
+ "sum": 458.6, "sum_squares": 1430.4}}, "000002": {"column_number": 2, "datatype":
492
+ "double", "name": "petal length", "optype": "numeric", "preferred": true,
493
+ "summary": {"maximum": 6.9, "median": 4.34142, "minimum": 1, "missing_count":
494
+ 0, "population": 150, "splits": [1.25138, 1.32426, 1.37171, 1.40962, 1.44567,
495
+ 1.48173, 1.51859, 1.56301, 1.6255, 1.74645, 3.23033, 3.675, 3.94203, 4.0469,
496
+ 4.18243, 4.34142, 4.45309, 4.51823, 4.61771, 4.72566, 4.83445, 4.93363, 5.03807,
497
+ 5.1064, 5.20938, 5.43979, 5.5744, 5.6646, 5.81496, 6.02913, 6.38125], "sum":
498
+ 563.7, "sum_squares": 2582.71}}, "000003": {"column_number": 3, "datatype":
499
+ "double", "name": "petal width", "optype": "numeric", "preferred": true, "summary":
500
+ {"counts": [[0.1, 5], [0.2, 29], [0.3, 7], [0.4, 7], [0.5, 1], [0.6, 1], [1,
501
+ 7], [1.1, 3], [1.2, 5], [1.3, 13], [1.4, 8], [1.5, 12], [1.6, 4], [1.7, 2],
502
+ [1.8, 12], [1.9, 5], [2, 6], [2.1, 6], [2.2, 3], [2.3, 8], [2.4, 3], [2.5,
503
+ 3]], "maximum": 2.5, "median": 1.32848, "minimum": 0.1, "missing_count": 0,
504
+ "population": 150, "sum": 179.9, "sum_squares": 302.33}}, "000004": {"column_number":
505
+ 4, "datatype": "string", "name": "species", "optype": "categorical", "preferred":
506
+ true, "summary": {"categories": [["Iris-versicolor", 50], ["Iris-setosa",
507
+ 50], ["Iris-virginica", 50]], "missing_count": 0}}}, "kind": "stree", "locale":
508
+ "en_US", "missing_strategy": "last_prediction", "root": {"children": [{"children":
509
+ [{"children": [{"count": 38, "distribution": [["Iris-virginica", 38]], "leaf":
510
+ true, "output": "Iris-virginica", "predicate": {"field": "000002", "operator":
511
+ ">", "value": 5.05}}, {"children": [{"children": [{"children": [{"count":
512
+ 1, "distribution": [["Iris-versicolor", 1]], "leaf": true, "output": "Iris-versicolor",
513
+ "predicate": {"field": "000002", "operator": ">", "value": 4.95}}, {"count":
514
+ 2, "distribution": [["Iris-virginica", 2]], "leaf": true, "output": "Iris-virginica",
515
+ "predicate": {"field": "000002", "operator": "<=", "value": 4.95}}], "count":
516
+ 3, "distribution": [["Iris-virginica", 2], ["Iris-versicolor", 1]], "output":
517
+ "Iris-virginica", "predicate": {"field": "000000", "operator": ">", "value":
518
+ 5.95}}, {"count": 1, "distribution": [["Iris-versicolor", 1]], "leaf": true,
519
+ "output": "Iris-versicolor", "predicate": {"field": "000000", "operator":
520
+ "<=", "value": 5.95}}], "count": 4, "distribution": [["Iris-virginica", 2],
521
+ ["Iris-versicolor", 2]], "output": "Iris-virginica", "predicate": {"field":
522
+ "000001", "operator": ">", "value": 2.9}}, {"count": 6, "distribution": [["Iris-virginica",
523
+ 6]], "leaf": true, "output": "Iris-virginica", "predicate": {"field": "000001",
524
+ "operator": "<=", "value": 2.9}}], "count": 10, "distribution": [["Iris-virginica",
525
+ 8], ["Iris-versicolor", 2]], "output": "Iris-virginica", "predicate": {"field":
526
+ "000002", "operator": "<=", "value": 5.05}}], "count": 48, "distribution":
527
+ [["Iris-virginica", 46], ["Iris-versicolor", 2]], "output": "Iris-virginica",
528
+ "predicate": {"field": "000003", "operator": ">", "value": 1.65}}, {"children":
529
+ [{"children": [{"count": 3, "distribution": [["Iris-virginica", 3]], "leaf":
530
+ true, "output": "Iris-virginica", "predicate": {"field": "000000", "operator":
531
+ ">", "value": 6.05}}, {"children": [{"count": 1, "distribution": [["Iris-versicolor",
532
+ 1]], "leaf": true, "output": "Iris-versicolor", "predicate": {"field": "000001",
533
+ "operator": ">", "value": 2.45}}, {"count": 1, "distribution": [["Iris-virginica",
534
+ 1]], "leaf": true, "output": "Iris-virginica", "predicate": {"field": "000001",
535
+ "operator": "<=", "value": 2.45}}], "count": 2, "distribution": [["Iris-virginica",
536
+ 1], ["Iris-versicolor", 1]], "output": "Iris-virginica", "predicate": {"field":
537
+ "000000", "operator": "<=", "value": 6.05}}], "count": 5, "distribution":
538
+ [["Iris-virginica", 4], ["Iris-versicolor", 1]], "output": "Iris-virginica",
539
+ "predicate": {"field": "000002", "operator": ">", "value": 4.95}}, {"count":
540
+ 47, "distribution": [["Iris-versicolor", 47]], "leaf": true, "output": "Iris-versicolor",
541
+ "predicate": {"field": "000002", "operator": "<=", "value": 4.95}}], "count":
542
+ 52, "distribution": [["Iris-virginica", 4], ["Iris-versicolor", 48]], "output":
543
+ "Iris-versicolor", "predicate": {"field": "000003", "operator": "<=", "value":
544
+ 1.65}}], "count": 100, "distribution": [["Iris-virginica", 50], ["Iris-versicolor",
545
+ 50]], "output": "Iris-virginica", "predicate": {"field": "000002", "operator":
546
+ ">", "value": 2.45}}, {"count": 50, "distribution": [["Iris-setosa", 50]],
547
+ "leaf": true, "output": "Iris-setosa", "predicate": {"field": "000002", "operator":
548
+ "<=", "value": 2.45}}], "count": 150, "distribution": [["Iris-virginica",
549
+ 50], ["Iris-versicolor", 50], ["Iris-setosa", 50]], "output": "Iris-virginica",
550
+ "predicate": true}, "row_range": {"size": 150, "start": 0}}, "name": "foo
551
+ name", "number_of_predictions": 0, "objective_fields": ["000004"], "private":
552
+ true, "range": [1, 150], "resource": "model/4fe14a701552687d4500014f", "rows":
553
+ 150, "size": 4608, "source": "source/4fe14a51035d074a21000148", "source_status":
554
+ true, "status": {"code": 5, "elapsed": 147, "message": "The model has been
555
+ created", "progress": 1}, "tags": [], "updated": "2012-06-20T03:58:41.982000"}'
556
+ http_version: '1.1'
557
+ recorded_at: Wed, 20 Jun 2012 03:58:26 GMT
558
+ recorded_with: VCR 2.2.2