big_ml 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,547 @@
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 04:09:38 GMT
21
+ server:
22
+ - nginx/1.0.12
23
+ content-length:
24
+ - '1281'
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-20T04:10:51.198000", "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
+ 1, "private": true, "resource": "source/4fe14d4b035d074a20000108", "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": 107, "message":
44
+ "The source has been created"}, "tags": [], "type": 0, "updated": "2012-06-20T04:11:23.607000"}]}'
45
+ http_version: '1.1'
46
+ recorded_at: Wed, 20 Jun 2012 04:11:09 GMT
47
+ - request:
48
+ method: delete
49
+ uri: https://bigml.io/andromeda/source/4fe14d4b035d074a20000108?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 04:07:20 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 04:11:11 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 04:09:41 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-20T04:10:52.524000", "credits": 0.0087890625, "description":
105
+ "", "locale": "en_US", "name": "iris'' dataset", "number_of_models": 1, "number_of_predictions":
106
+ 1, "private": true, "resource": "dataset/4fe14d4c035d074a21000156", "rows":
107
+ 150, "size": 4608, "source": "source/4fe14d4b035d074a20000108", "source_status":
108
+ false, "status": {"bytes": 4608, "code": 5, "elapsed": 236, "field_errors":
109
+ [], "message": "The dataset has been created", "row_format_errors": [], "serialized_rows":
110
+ 150}, "tags": [], "updated": "2012-06-20T04:11:23.613000"}]}'
111
+ http_version: '1.1'
112
+ recorded_at: Wed, 20 Jun 2012 04:11:12 GMT
113
+ - request:
114
+ method: delete
115
+ uri: https://bigml.io/andromeda/dataset/4fe14d4c035d074a21000156?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 04:07:23 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 04:11:13 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 04:09:43 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-20T04:11:22.172000", "credits": 0.03515625, "dataset":
171
+ "dataset/4fe14d4c035d074a21000156", "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": 1, "objective_fields": ["000004"], "private":
175
+ true, "range": [1, 150], "resource": "model/4fe14d6a1552687d4700011f", "rows":
176
+ 150, "size": 4608, "source": "source/4fe14d4b035d074a20000108", "source_status":
177
+ false, "status": {"code": 5, "elapsed": 193, "message": "The model has been
178
+ created", "progress": 1}, "tags": [], "updated": "2012-06-20T04:11:23.618000"}]}'
179
+ http_version: '1.1'
180
+ recorded_at: Wed, 20 Jun 2012 04:11:14 GMT
181
+ - request:
182
+ method: delete
183
+ uri: https://bigml.io/andromeda/model/4fe14d6a1552687d4700011f?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 04:07:25 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 04:11:15 GMT
210
+ - request:
211
+ method: get
212
+ uri: https://bigml.io/andromeda/prediction?username=<USERNAME>&api_key=<API_KEY>
213
+ body:
214
+ encoding: US-ASCII
215
+ string: ''
216
+ headers:
217
+ connection:
218
+ - close
219
+ response:
220
+ status:
221
+ code: 200
222
+ message: OK
223
+ headers:
224
+ content-type:
225
+ - application/json; charset=utf-8
226
+ date:
227
+ - Wed, 20 Jun 2012 04:09:46 GMT
228
+ server:
229
+ - nginx/1.0.12
230
+ content-length:
231
+ - '1312'
232
+ connection:
233
+ - Close
234
+ body:
235
+ encoding: US-ASCII
236
+ string: ! '{"meta": {"limit": 20, "next": null, "offset": 0, "previous": null,
237
+ "total_count": 1}, "objects": [{"category": 0, "code": 200, "created": "2012-06-20T04:11:23.601000",
238
+ "credits": 0.01, "dataset": "dataset/4fe14d4c035d074a21000156", "dataset_status":
239
+ false, "description": "", "fields": {"000001": {"column_number": 1, "datatype":
240
+ "double", "name": "sepal width", "optype": "numeric", "preferred": true},
241
+ "000002": {"column_number": 2, "datatype": "double", "name": "petal length",
242
+ "optype": "numeric", "preferred": true}, "000004": {"column_number": 4, "datatype":
243
+ "string", "name": "species", "optype": "categorical", "preferred": true}},
244
+ "input_data": {"000001": 3}, "locale": "en_US", "model": "model/4fe14d6a1552687d4700011f",
245
+ "model_status": false, "name": "foo name", "objective_fields": ["000004"],
246
+ "prediction": {"000004": "Iris-virginica"}, "prediction_path": {"bad_fields":
247
+ [], "next_predicates": [{"field": "000002", "operator": ">", "value": 2.45},
248
+ {"field": "000002", "operator": "<=", "value": 2.45}], "path": [], "unknown_fields":
249
+ []}, "private": true, "resource": "prediction/4fe14d6b1552687d42000167", "source":
250
+ "source/4fe14d4b035d074a20000108", "source_status": false, "status": {"code":
251
+ 5, "message": "The prediction has been created"}, "tags": [], "updated": "2012-06-20T04:10:56.416000"}]}'
252
+ http_version: '1.1'
253
+ recorded_at: Wed, 20 Jun 2012 04:11:16 GMT
254
+ - request:
255
+ method: delete
256
+ uri: https://bigml.io/andromeda/prediction/4fe14d6b1552687d42000167?username=<USERNAME>&api_key=<API_KEY>
257
+ body:
258
+ encoding: US-ASCII
259
+ string: ''
260
+ headers:
261
+ connection:
262
+ - close
263
+ response:
264
+ status:
265
+ code: 204
266
+ message: NO CONTENT
267
+ headers:
268
+ content-length:
269
+ - '0'
270
+ content-type:
271
+ - text/html; charset=utf-8
272
+ date:
273
+ - Wed, 20 Jun 2012 04:07:27 GMT
274
+ server:
275
+ - nginx/1.0.12
276
+ connection:
277
+ - Close
278
+ body:
279
+ encoding: US-ASCII
280
+ string: ''
281
+ http_version: '1.1'
282
+ recorded_at: Wed, 20 Jun 2012 04:11:17 GMT
283
+ - request:
284
+ method: post
285
+ uri: https://bigml.io/andromeda/source
286
+ body:
287
+ encoding: US-ASCII
288
+ string: ''
289
+ headers:
290
+ content-type:
291
+ - multipart/form-data; boundary=-----------RubyMultipartPost
292
+ content-length:
293
+ - '5147'
294
+ connection:
295
+ - close
296
+ response:
297
+ status:
298
+ code: 201
299
+ message: CREATED
300
+ headers:
301
+ content-type:
302
+ - application/json; charset=utf-8
303
+ date:
304
+ - Wed, 20 Jun 2012 04:09:48 GMT
305
+ location:
306
+ - http://bigml.io/andromeda/source/4fe14d781552687d4200016e
307
+ server:
308
+ - nginx/1.0.12
309
+ content-length:
310
+ - '567'
311
+ connection:
312
+ - Close
313
+ body:
314
+ encoding: US-ASCII
315
+ string: ! '{"category": 0, "code": 201, "content_type": "application/octet-stream",
316
+ "created": "2012-06-20T04:11:36.859330", "credits": 0.0, "description": "",
317
+ "file_name": "iris.csv", "md5": "d1175c032e1042bec7f974c91e4a65ae", "name":
318
+ "iris.csv", "number_of_datasets": 0, "number_of_models": 0, "number_of_predictions":
319
+ 0, "private": true, "resource": "source/4fe14d781552687d4200016e", "size":
320
+ 4608, "source_parser": {}, "status": {"code": 1, "message": "The request has
321
+ been queued and will be processed soon"}, "tags": [], "type": 0, "updated":
322
+ "2012-06-20T04:11:36.859352"}'
323
+ http_version: '1.1'
324
+ recorded_at: Wed, 20 Jun 2012 04:11:19 GMT
325
+ - request:
326
+ method: post
327
+ uri: https://bigml.io/andromeda/dataset?username=<USERNAME>&api_key=<API_KEY>
328
+ body:
329
+ encoding: UTF-8
330
+ string: ! '{"source":"source/4fe14d781552687d4200016e"}'
331
+ headers:
332
+ content-type:
333
+ - application/json
334
+ connection:
335
+ - close
336
+ response:
337
+ status:
338
+ code: 201
339
+ message: CREATED
340
+ headers:
341
+ content-type:
342
+ - application/json; charset=utf-8
343
+ date:
344
+ - Wed, 20 Jun 2012 04:07:30 GMT
345
+ location:
346
+ - http://bigml.io/andromeda/dataset/4fe14d7a1552687d4500015b
347
+ server:
348
+ - nginx/1.0.12
349
+ content-length:
350
+ - '920'
351
+ connection:
352
+ - Close
353
+ body:
354
+ encoding: US-ASCII
355
+ string: ! '{"category": 0, "code": 201, "columns": 5, "created": "2012-06-20T04:11:38.222184",
356
+ "credits": 0.0087890625, "description": "", "fields": {"000000": {"column_number":
357
+ 0, "name": "sepal length", "optype": "numeric"}, "000001": {"column_number":
358
+ 1, "name": "sepal width", "optype": "numeric"}, "000002": {"column_number":
359
+ 2, "name": "petal length", "optype": "numeric"}, "000003": {"column_number":
360
+ 3, "name": "petal width", "optype": "numeric"}, "000004": {"column_number":
361
+ 4, "name": "species", "optype": "categorical"}}, "locale": "en_US", "name":
362
+ "iris'' dataset", "number_of_models": 0, "number_of_predictions": 0, "private":
363
+ true, "resource": "dataset/4fe14d7a1552687d4500015b", "rows": 0, "size": 4608,
364
+ "source": "source/4fe14d781552687d4200016e", "source_status": true, "status":
365
+ {"code": 1, "message": "The dataset is being processed and will be created
366
+ soon"}, "tags": [], "updated": "2012-06-20T04:11:38.222202"}'
367
+ http_version: '1.1'
368
+ recorded_at: Wed, 20 Jun 2012 04:11:21 GMT
369
+ - request:
370
+ method: post
371
+ uri: https://bigml.io/andromeda/model?username=<USERNAME>&api_key=<API_KEY>
372
+ body:
373
+ encoding: UTF-8
374
+ string: ! '{"dataset":"dataset/4fe14d7a1552687d4500015b"}'
375
+ headers:
376
+ content-type:
377
+ - application/json
378
+ connection:
379
+ - close
380
+ response:
381
+ status:
382
+ code: 201
383
+ message: CREATED
384
+ headers:
385
+ content-type:
386
+ - application/json; charset=utf-8
387
+ date:
388
+ - Wed, 20 Jun 2012 04:09:51 GMT
389
+ location:
390
+ - http://bigml.io/andromeda/model/4fe14d5f035d074a21000159
391
+ server:
392
+ - nginx/1.0.12
393
+ content-length:
394
+ - '690'
395
+ connection:
396
+ - Close
397
+ body:
398
+ encoding: US-ASCII
399
+ string: ! '{"category": 0, "code": 201, "columns": 5, "created": "2012-06-20T04:11:11.239850",
400
+ "credits": 0.03515625, "dataset": "dataset/4fe14d7a1552687d4500015b", "dataset_status":
401
+ true, "description": "", "holdout": 0.0, "input_fields": [], "locale": "en_US",
402
+ "max_columns": 5, "max_rows": 150, "name": "iris'' dataset model", "number_of_predictions":
403
+ 0, "objective_fields": [], "private": true, "range": [1, 150], "resource":
404
+ "model/4fe14d5f035d074a21000159", "rows": 150, "size": 4608, "source": "source/4fe14d781552687d4200016e",
405
+ "source_status": true, "status": {"code": 1, "message": "The model is being
406
+ processed and will be created soon"}, "tags": [], "updated": "2012-06-20T04:11:11.239882"}'
407
+ http_version: '1.1'
408
+ recorded_at: Wed, 20 Jun 2012 04:11:22 GMT
409
+ - request:
410
+ method: post
411
+ uri: https://bigml.io/andromeda/prediction?username=<USERNAME>&api_key=<API_KEY>
412
+ body:
413
+ encoding: UTF-8
414
+ string: ! '{"model":"model/4fe14d5f035d074a21000159","input_data":{"000001":3}}'
415
+ headers:
416
+ content-type:
417
+ - application/json
418
+ connection:
419
+ - close
420
+ response:
421
+ status:
422
+ code: 201
423
+ message: CREATED
424
+ headers:
425
+ content-type:
426
+ - application/json; charset=utf-8
427
+ date:
428
+ - Wed, 20 Jun 2012 04:07:33 GMT
429
+ location:
430
+ - http://bigml.io/andromeda/prediction/4fe14d60035d074a1c000113
431
+ server:
432
+ - nginx/1.0.12
433
+ content-length:
434
+ - '1222'
435
+ connection:
436
+ - Close
437
+ body:
438
+ encoding: US-ASCII
439
+ string: ! '{"category": 0, "code": 201, "created": "2012-06-20T04:11:12.768549",
440
+ "credits": 0.01, "dataset": "dataset/4fe14d7a1552687d4500015b", "dataset_status":
441
+ true, "description": "", "fields": {"000001": {"column_number": 1, "datatype":
442
+ "double", "name": "sepal width", "optype": "numeric", "preferred": true},
443
+ "000002": {"column_number": 2, "datatype": "double", "name": "petal length",
444
+ "optype": "numeric", "preferred": true}, "000004": {"column_number": 4, "datatype":
445
+ "string", "name": "species", "optype": "categorical", "preferred": true}},
446
+ "input_data": {"000001": 3}, "locale": "en_US", "model": "model/4fe14d5f035d074a21000159",
447
+ "model_status": true, "name": "Prediction for species", "objective_fields":
448
+ ["000004"], "prediction": {"000004": "Iris-virginica"}, "prediction_path":
449
+ {"bad_fields": [], "next_predicates": [{"field": "000002", "operator": ">",
450
+ "value": 2.45}, {"field": "000002", "operator": "<=", "value": 2.45}], "path":
451
+ [], "unknown_fields": []}, "private": true, "resource": "prediction/4fe14d60035d074a1c000113",
452
+ "source": "source/4fe14d781552687d4200016e", "source_status": true, "status":
453
+ {"code": 5, "message": "The prediction has been created"}, "tags": [], "updated":
454
+ "2012-06-20T04:11:12.768570"}'
455
+ http_version: '1.1'
456
+ recorded_at: Wed, 20 Jun 2012 04:11:23 GMT
457
+ - request:
458
+ method: delete
459
+ uri: https://bigml.io/andromeda/prediction/4fe14d60035d074a1c000113?username=<USERNAME>&api_key=<API_KEY>
460
+ body:
461
+ encoding: US-ASCII
462
+ string: ''
463
+ headers:
464
+ connection:
465
+ - close
466
+ response:
467
+ status:
468
+ code: 204
469
+ message: NO CONTENT
470
+ headers:
471
+ content-length:
472
+ - '0'
473
+ content-type:
474
+ - text/html; charset=utf-8
475
+ date:
476
+ - Wed, 20 Jun 2012 04:09:54 GMT
477
+ server:
478
+ - nginx/1.0.12
479
+ connection:
480
+ - Close
481
+ body:
482
+ encoding: US-ASCII
483
+ string: ''
484
+ http_version: '1.1'
485
+ recorded_at: Wed, 20 Jun 2012 04:11:24 GMT
486
+ - request:
487
+ method: get
488
+ uri: https://bigml.io/andromeda/prediction/4fe14d60035d074a1c000113?username=<USERNAME>&api_key=<API_KEY>
489
+ body:
490
+ encoding: US-ASCII
491
+ string: ''
492
+ headers:
493
+ connection:
494
+ - close
495
+ response:
496
+ status:
497
+ code: 404
498
+ message: NOT FOUND
499
+ headers:
500
+ content-type:
501
+ - application/json; charset=utf-8
502
+ date:
503
+ - Wed, 20 Jun 2012 04:07:35 GMT
504
+ server:
505
+ - nginx/1.0.12
506
+ content-length:
507
+ - '173'
508
+ connection:
509
+ - Close
510
+ body:
511
+ encoding: US-ASCII
512
+ string: ! '{"code": 404, "status": {"code": -1201, "extra": ["Couldn''t find
513
+ an instance of ''Prediction'' which matched ''pk=4fe14d60035d074a1c000113''."],
514
+ "message": "Id does not exist"}}'
515
+ http_version: '1.1'
516
+ recorded_at: Wed, 20 Jun 2012 04:11:25 GMT
517
+ - request:
518
+ method: get
519
+ uri: https://bigml.io/andromeda/prediction?username=<USERNAME>&api_key=<API_KEY>
520
+ body:
521
+ encoding: US-ASCII
522
+ string: ''
523
+ headers:
524
+ connection:
525
+ - close
526
+ response:
527
+ status:
528
+ code: 200
529
+ message: OK
530
+ headers:
531
+ content-type:
532
+ - application/json; charset=utf-8
533
+ date:
534
+ - Wed, 20 Jun 2012 04:09:56 GMT
535
+ server:
536
+ - nginx/1.0.12
537
+ content-length:
538
+ - '101'
539
+ connection:
540
+ - Close
541
+ body:
542
+ encoding: US-ASCII
543
+ string: ! '{"meta": {"limit": 20, "next": null, "offset": 0, "previous": null,
544
+ "total_count": 0}, "objects": []}'
545
+ http_version: '1.1'
546
+ recorded_at: Wed, 20 Jun 2012 04:11:27 GMT
547
+ recorded_with: VCR 2.2.2