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.
- data/.gitignore +19 -0
- data/.rspec +2 -0
- data/.rvmrc +1 -0
- data/.rvmrc.example +1 -0
- data/.travis.yml +4 -0
- data/CHANGELOG.md +8 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +49 -0
- data/Rakefile +6 -0
- data/TODO.md +6 -0
- data/big_ml.gemspec +23 -0
- data/lib/big_ml/authenticable.rb +10 -0
- data/lib/big_ml/base.rb +51 -0
- data/lib/big_ml/client.rb +29 -0
- data/lib/big_ml/config.rb +30 -0
- data/lib/big_ml/dataset.rb +19 -0
- data/lib/big_ml/model.rb +21 -0
- data/lib/big_ml/prediction.rb +19 -0
- data/lib/big_ml/request.rb +29 -0
- data/lib/big_ml/source.rb +18 -0
- data/lib/big_ml/version.rb +3 -0
- data/lib/big_ml.rb +13 -0
- data/spec/fixtures/iris.csv +151 -0
- data/spec/integration/dataset_spec.rb +51 -0
- data/spec/integration/model_spec.rb +53 -0
- data/spec/integration/prediction_spec.rb +55 -0
- data/spec/integration/source_spec.rb +55 -0
- data/spec/spec_helper.rb +22 -0
- data/spec/units/client_spec.rb +50 -0
- data/spec/units/source_spec.rb +20 -0
- data/spec/vcr_cassettes/BigML_Dataset/no_dataset/_all/must_be_empty.yml +136 -0
- data/spec/vcr_cassettes/BigML_Dataset/one_dataset/must_be_able_to_be_find_using_the_reference.yml +293 -0
- data/spec/vcr_cassettes/BigML_Dataset/one_dataset/must_be_able_to_remove_the_dataset.yml +318 -0
- data/spec/vcr_cassettes/BigML_Dataset/one_dataset/must_be_able_to_update_the_name.yml +360 -0
- data/spec/vcr_cassettes/BigML_Dataset/one_dataset/must_have_only_one_item.yml +265 -0
- data/spec/vcr_cassettes/BigML_Dataset/one_dataset/must_have_the_same_file_name.yml +265 -0
- data/spec/vcr_cassettes/BigML_Dataset/one_dataset/was_created_successfully.yml +149 -0
- data/spec/vcr_cassettes/BigML_Model/no_model/_all/must_be_empty.yml +166 -0
- data/spec/vcr_cassettes/BigML_Model/one_model/must_be_able_to_be_find_using_the_reference.yml +446 -0
- data/spec/vcr_cassettes/BigML_Model/one_model/must_be_able_to_remove_the_model.yml +426 -0
- data/spec/vcr_cassettes/BigML_Model/one_model/must_be_able_to_update_the_name.yml +558 -0
- data/spec/vcr_cassettes/BigML_Model/one_model/must_have_only_one_item.yml +258 -0
- data/spec/vcr_cassettes/BigML_Model/one_model/must_have_the_same_file_name.yml +375 -0
- data/spec/vcr_cassettes/BigML_Model/one_model/must_have_the_same_size.yml +375 -0
- data/spec/vcr_cassettes/BigML_Model/one_model/was_created_successfully.yml +298 -0
- data/spec/vcr_cassettes/BigML_Prediction/no_prediction/_all/must_be_empty.yml +305 -0
- data/spec/vcr_cassettes/BigML_Prediction/one_prediction/must_be_able_to_be_find_using_the_reference.yml +502 -0
- data/spec/vcr_cassettes/BigML_Prediction/one_prediction/must_be_able_to_remove_the_prediction.yml +547 -0
- data/spec/vcr_cassettes/BigML_Prediction/one_prediction/must_be_able_to_update_the_name.yml +546 -0
- data/spec/vcr_cassettes/BigML_Prediction/one_prediction/must_have_only_one_item.yml +503 -0
- data/spec/vcr_cassettes/BigML_Prediction/one_prediction/must_have_the_same_name.yml +420 -0
- data/spec/vcr_cassettes/BigML_Prediction/one_prediction/was_created_successfully.yml +297 -0
- data/spec/vcr_cassettes/BigML_Source/no_source/_all/must_be_empty.yml +136 -0
- data/spec/vcr_cassettes/BigML_Source/one_source/must_be_able_to_be_find_using_the_reference.yml +191 -0
- data/spec/vcr_cassettes/BigML_Source/one_source/must_be_able_to_remove_the_source.yml +195 -0
- data/spec/vcr_cassettes/BigML_Source/one_source/must_be_able_to_update_the_name.yml +279 -0
- data/spec/vcr_cassettes/BigML_Source/one_source/must_have_only_one_item.yml +192 -0
- data/spec/vcr_cassettes/BigML_Source/one_source/must_have_the_same_file_name.yml +192 -0
- data/spec/vcr_cassettes/BigML_Source/one_source/was_created_successfully.yml +105 -0
- metadata +224 -0
| @@ -0,0 +1,258 @@ | |
| 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:56:06 GMT
         | 
| 21 | 
            +
                  server:
         | 
| 22 | 
            +
                  - nginx/1.0.12
         | 
| 23 | 
            +
                  content-length:
         | 
| 24 | 
            +
                  - '101'
         | 
| 25 | 
            +
                  connection:
         | 
| 26 | 
            +
                  - Close
         | 
| 27 | 
            +
                body:
         | 
| 28 | 
            +
                  encoding: US-ASCII
         | 
| 29 | 
            +
                  string: ! '{"meta": {"limit": 20, "next": null, "offset": 0, "previous": null,
         | 
| 30 | 
            +
                    "total_count": 0}, "objects": []}'
         | 
| 31 | 
            +
                http_version: '1.1'
         | 
| 32 | 
            +
              recorded_at: Wed, 20 Jun 2012 03:57:37 GMT
         | 
| 33 | 
            +
            - request:
         | 
| 34 | 
            +
                method: get
         | 
| 35 | 
            +
                uri: https://bigml.io/andromeda/dataset?username=<USERNAME>&api_key=<API_KEY>
         | 
| 36 | 
            +
                body:
         | 
| 37 | 
            +
                  encoding: US-ASCII
         | 
| 38 | 
            +
                  string: ''
         | 
| 39 | 
            +
                headers:
         | 
| 40 | 
            +
                  connection:
         | 
| 41 | 
            +
                  - close
         | 
| 42 | 
            +
              response:
         | 
| 43 | 
            +
                status:
         | 
| 44 | 
            +
                  code: 200
         | 
| 45 | 
            +
                  message: OK
         | 
| 46 | 
            +
                headers:
         | 
| 47 | 
            +
                  content-type:
         | 
| 48 | 
            +
                  - application/json; charset=utf-8
         | 
| 49 | 
            +
                  date:
         | 
| 50 | 
            +
                  - Wed, 20 Jun 2012 03:53:47 GMT
         | 
| 51 | 
            +
                  server:
         | 
| 52 | 
            +
                  - nginx/1.0.12
         | 
| 53 | 
            +
                  transfer-encoding:
         | 
| 54 | 
            +
                  - chunked
         | 
| 55 | 
            +
                  connection:
         | 
| 56 | 
            +
                  - Close
         | 
| 57 | 
            +
                body:
         | 
| 58 | 
            +
                  encoding: US-ASCII
         | 
| 59 | 
            +
                  string: ! '{"meta": {"limit": 20, "next": null, "offset": 0, "previous": null,
         | 
| 60 | 
            +
                    "total_count": 0}, "objects": []}'
         | 
| 61 | 
            +
                http_version: '1.1'
         | 
| 62 | 
            +
              recorded_at: Wed, 20 Jun 2012 03:57:38 GMT
         | 
| 63 | 
            +
            - request:
         | 
| 64 | 
            +
                method: get
         | 
| 65 | 
            +
                uri: https://bigml.io/andromeda/model?username=<USERNAME>&api_key=<API_KEY>
         | 
| 66 | 
            +
                body:
         | 
| 67 | 
            +
                  encoding: US-ASCII
         | 
| 68 | 
            +
                  string: ''
         | 
| 69 | 
            +
                headers:
         | 
| 70 | 
            +
                  connection:
         | 
| 71 | 
            +
                  - close
         | 
| 72 | 
            +
              response:
         | 
| 73 | 
            +
                status:
         | 
| 74 | 
            +
                  code: 200
         | 
| 75 | 
            +
                  message: OK
         | 
| 76 | 
            +
                headers:
         | 
| 77 | 
            +
                  content-type:
         | 
| 78 | 
            +
                  - application/json; charset=utf-8
         | 
| 79 | 
            +
                  date:
         | 
| 80 | 
            +
                  - Wed, 20 Jun 2012 03:56:08 GMT
         | 
| 81 | 
            +
                  server:
         | 
| 82 | 
            +
                  - nginx/1.0.12
         | 
| 83 | 
            +
                  content-length:
         | 
| 84 | 
            +
                  - '101'
         | 
| 85 | 
            +
                  connection:
         | 
| 86 | 
            +
                  - Close
         | 
| 87 | 
            +
                body:
         | 
| 88 | 
            +
                  encoding: US-ASCII
         | 
| 89 | 
            +
                  string: ! '{"meta": {"limit": 20, "next": null, "offset": 0, "previous": null,
         | 
| 90 | 
            +
                    "total_count": 0}, "objects": []}'
         | 
| 91 | 
            +
                http_version: '1.1'
         | 
| 92 | 
            +
              recorded_at: Wed, 20 Jun 2012 03:57:39 GMT
         | 
| 93 | 
            +
            - request:
         | 
| 94 | 
            +
                method: post
         | 
| 95 | 
            +
                uri: https://bigml.io/andromeda/source
         | 
| 96 | 
            +
                body:
         | 
| 97 | 
            +
                  encoding: US-ASCII
         | 
| 98 | 
            +
                  string: ''
         | 
| 99 | 
            +
                headers:
         | 
| 100 | 
            +
                  content-type:
         | 
| 101 | 
            +
                  - multipart/form-data; boundary=-----------RubyMultipartPost
         | 
| 102 | 
            +
                  content-length:
         | 
| 103 | 
            +
                  - '5147'
         | 
| 104 | 
            +
                  connection:
         | 
| 105 | 
            +
                  - close
         | 
| 106 | 
            +
              response:
         | 
| 107 | 
            +
                status:
         | 
| 108 | 
            +
                  code: 201
         | 
| 109 | 
            +
                  message: CREATED
         | 
| 110 | 
            +
                headers:
         | 
| 111 | 
            +
                  content-type:
         | 
| 112 | 
            +
                  - application/json; charset=utf-8
         | 
| 113 | 
            +
                  date:
         | 
| 114 | 
            +
                  - Wed, 20 Jun 2012 03:53:50 GMT
         | 
| 115 | 
            +
                  location:
         | 
| 116 | 
            +
                  - http://bigml.io/andromeda/source/4fe14a451552687d43000133
         | 
| 117 | 
            +
                  server:
         | 
| 118 | 
            +
                  - nginx/1.0.12
         | 
| 119 | 
            +
                  content-length:
         | 
| 120 | 
            +
                  - '567'
         | 
| 121 | 
            +
                  connection:
         | 
| 122 | 
            +
                  - Close
         | 
| 123 | 
            +
                body:
         | 
| 124 | 
            +
                  encoding: US-ASCII
         | 
| 125 | 
            +
                  string: ! '{"category": 0, "code": 201, "content_type": "application/octet-stream",
         | 
| 126 | 
            +
                    "created": "2012-06-20T03:57:57.649886", "credits": 0.0, "description": "",
         | 
| 127 | 
            +
                    "file_name": "iris.csv", "md5": "d1175c032e1042bec7f974c91e4a65ae", "name":
         | 
| 128 | 
            +
                    "iris.csv", "number_of_datasets": 0, "number_of_models": 0, "number_of_predictions":
         | 
| 129 | 
            +
                    0, "private": true, "resource": "source/4fe14a451552687d43000133", "size":
         | 
| 130 | 
            +
                    4608, "source_parser": {}, "status": {"code": 1, "message": "The request has
         | 
| 131 | 
            +
                    been queued and will be processed soon"}, "tags": [], "type": 0, "updated":
         | 
| 132 | 
            +
                    "2012-06-20T03:57:57.649906"}'
         | 
| 133 | 
            +
                http_version: '1.1'
         | 
| 134 | 
            +
              recorded_at: Wed, 20 Jun 2012 03:57:40 GMT
         | 
| 135 | 
            +
            - request:
         | 
| 136 | 
            +
                method: post
         | 
| 137 | 
            +
                uri: https://bigml.io/andromeda/dataset?username=<USERNAME>&api_key=<API_KEY>
         | 
| 138 | 
            +
                body:
         | 
| 139 | 
            +
                  encoding: UTF-8
         | 
| 140 | 
            +
                  string: ! '{"source":"source/4fe14a451552687d43000133"}'
         | 
| 141 | 
            +
                headers:
         | 
| 142 | 
            +
                  content-type:
         | 
| 143 | 
            +
                  - application/json
         | 
| 144 | 
            +
                  connection:
         | 
| 145 | 
            +
                  - close
         | 
| 146 | 
            +
              response:
         | 
| 147 | 
            +
                status:
         | 
| 148 | 
            +
                  code: 201
         | 
| 149 | 
            +
                  message: CREATED
         | 
| 150 | 
            +
                headers:
         | 
| 151 | 
            +
                  content-type:
         | 
| 152 | 
            +
                  - application/json; charset=utf-8
         | 
| 153 | 
            +
                  date:
         | 
| 154 | 
            +
                  - Wed, 20 Jun 2012 03:56:11 GMT
         | 
| 155 | 
            +
                  location:
         | 
| 156 | 
            +
                  - http://bigml.io/andromeda/dataset/4fe14a461552687d42000145
         | 
| 157 | 
            +
                  server:
         | 
| 158 | 
            +
                  - nginx/1.0.12
         | 
| 159 | 
            +
                  content-length:
         | 
| 160 | 
            +
                  - '920'
         | 
| 161 | 
            +
                  connection:
         | 
| 162 | 
            +
                  - Close
         | 
| 163 | 
            +
                body:
         | 
| 164 | 
            +
                  encoding: US-ASCII
         | 
| 165 | 
            +
                  string: ! '{"category": 0, "code": 201, "columns": 5, "created": "2012-06-20T03:57:58.955800",
         | 
| 166 | 
            +
                    "credits": 0.0087890625, "description": "", "fields": {"000000": {"column_number":
         | 
| 167 | 
            +
                    0, "name": "sepal length", "optype": "numeric"}, "000001": {"column_number":
         | 
| 168 | 
            +
                    1, "name": "sepal width", "optype": "numeric"}, "000002": {"column_number":
         | 
| 169 | 
            +
                    2, "name": "petal length", "optype": "numeric"}, "000003": {"column_number":
         | 
| 170 | 
            +
                    3, "name": "petal width", "optype": "numeric"}, "000004": {"column_number":
         | 
| 171 | 
            +
                    4, "name": "species", "optype": "categorical"}}, "locale": "en_US", "name":
         | 
| 172 | 
            +
                    "iris'' dataset", "number_of_models": 0, "number_of_predictions": 0, "private":
         | 
| 173 | 
            +
                    true, "resource": "dataset/4fe14a461552687d42000145", "rows": 0, "size": 4608,
         | 
| 174 | 
            +
                    "source": "source/4fe14a451552687d43000133", "source_status": true, "status":
         | 
| 175 | 
            +
                    {"code": 1, "message": "The dataset is being processed and will be created
         | 
| 176 | 
            +
                    soon"}, "tags": [], "updated": "2012-06-20T03:57:58.955819"}'
         | 
| 177 | 
            +
                http_version: '1.1'
         | 
| 178 | 
            +
              recorded_at: Wed, 20 Jun 2012 03:57:42 GMT
         | 
| 179 | 
            +
            - request:
         | 
| 180 | 
            +
                method: post
         | 
| 181 | 
            +
                uri: https://bigml.io/andromeda/model?username=<USERNAME>&api_key=<API_KEY>
         | 
| 182 | 
            +
                body:
         | 
| 183 | 
            +
                  encoding: UTF-8
         | 
| 184 | 
            +
                  string: ! '{"dataset":"dataset/4fe14a461552687d42000145"}'
         | 
| 185 | 
            +
                headers:
         | 
| 186 | 
            +
                  content-type:
         | 
| 187 | 
            +
                  - application/json
         | 
| 188 | 
            +
                  connection:
         | 
| 189 | 
            +
                  - close
         | 
| 190 | 
            +
              response:
         | 
| 191 | 
            +
                status:
         | 
| 192 | 
            +
                  code: 201
         | 
| 193 | 
            +
                  message: CREATED
         | 
| 194 | 
            +
                headers:
         | 
| 195 | 
            +
                  content-type:
         | 
| 196 | 
            +
                  - application/json; charset=utf-8
         | 
| 197 | 
            +
                  date:
         | 
| 198 | 
            +
                  - Wed, 20 Jun 2012 03:53:54 GMT
         | 
| 199 | 
            +
                  location:
         | 
| 200 | 
            +
                  - http://bigml.io/andromeda/model/4fe14a2d035d074a1e0000f7
         | 
| 201 | 
            +
                  server:
         | 
| 202 | 
            +
                  - nginx/1.0.12
         | 
| 203 | 
            +
                  content-length:
         | 
| 204 | 
            +
                  - '690'
         | 
| 205 | 
            +
                  connection:
         | 
| 206 | 
            +
                  - Close
         | 
| 207 | 
            +
                body:
         | 
| 208 | 
            +
                  encoding: US-ASCII
         | 
| 209 | 
            +
                  string: ! '{"category": 0, "code": 201, "columns": 5, "created": "2012-06-20T03:57:33.206588",
         | 
| 210 | 
            +
                    "credits": 0.03515625, "dataset": "dataset/4fe14a461552687d42000145", "dataset_status":
         | 
| 211 | 
            +
                    true, "description": "", "holdout": 0.0, "input_fields": [], "locale": "en_US",
         | 
| 212 | 
            +
                    "max_columns": 5, "max_rows": 150, "name": "iris'' dataset model", "number_of_predictions":
         | 
| 213 | 
            +
                    0, "objective_fields": [], "private": true, "range": [1, 150], "resource":
         | 
| 214 | 
            +
                    "model/4fe14a2d035d074a1e0000f7", "rows": 150, "size": 4608, "source": "source/4fe14a451552687d43000133",
         | 
| 215 | 
            +
                    "source_status": true, "status": {"code": 1, "message": "The model is being
         | 
| 216 | 
            +
                    processed and will be created soon"}, "tags": [], "updated": "2012-06-20T03:57:33.206620"}'
         | 
| 217 | 
            +
                http_version: '1.1'
         | 
| 218 | 
            +
              recorded_at: Wed, 20 Jun 2012 03:57:44 GMT
         | 
| 219 | 
            +
            - request:
         | 
| 220 | 
            +
                method: get
         | 
| 221 | 
            +
                uri: https://bigml.io/andromeda/model?username=<USERNAME>&api_key=<API_KEY>
         | 
| 222 | 
            +
                body:
         | 
| 223 | 
            +
                  encoding: US-ASCII
         | 
| 224 | 
            +
                  string: ''
         | 
| 225 | 
            +
                headers:
         | 
| 226 | 
            +
                  connection:
         | 
| 227 | 
            +
                  - close
         | 
| 228 | 
            +
              response:
         | 
| 229 | 
            +
                status:
         | 
| 230 | 
            +
                  code: 200
         | 
| 231 | 
            +
                  message: OK
         | 
| 232 | 
            +
                headers:
         | 
| 233 | 
            +
                  content-type:
         | 
| 234 | 
            +
                  - application/json; charset=utf-8
         | 
| 235 | 
            +
                  date:
         | 
| 236 | 
            +
                  - Wed, 20 Jun 2012 03:56:14 GMT
         | 
| 237 | 
            +
                  server:
         | 
| 238 | 
            +
                  - nginx/1.0.12
         | 
| 239 | 
            +
                  content-length:
         | 
| 240 | 
            +
                  - '841'
         | 
| 241 | 
            +
                  connection:
         | 
| 242 | 
            +
                  - Close
         | 
| 243 | 
            +
                body:
         | 
| 244 | 
            +
                  encoding: US-ASCII
         | 
| 245 | 
            +
                  string: ! '{"meta": {"limit": 20, "next": null, "offset": 0, "previous": null,
         | 
| 246 | 
            +
                    "total_count": 1}, "objects": [{"category": 0, "code": 200, "columns": 5,
         | 
| 247 | 
            +
                    "created": "2012-06-20T03:57:33.206000", "credits": 0.03515625, "dataset":
         | 
| 248 | 
            +
                    "dataset/4fe14a461552687d42000145", "dataset_status": true, "description":
         | 
| 249 | 
            +
                    "", "holdout": 0.0, "input_fields": ["000000", "000001", "000002", "000003"],
         | 
| 250 | 
            +
                    "locale": "en_US", "max_columns": 5, "max_rows": 150, "name": "iris'' dataset
         | 
| 251 | 
            +
                    model", "number_of_predictions": 0, "objective_fields": ["000004"], "private":
         | 
| 252 | 
            +
                    true, "range": [1, 150], "resource": "model/4fe14a2d035d074a1e0000f7", "rows":
         | 
| 253 | 
            +
                    150, "size": 4608, "source": "source/4fe14a451552687d43000133", "source_status":
         | 
| 254 | 
            +
                    true, "status": {"code": 5, "elapsed": 150, "message": "The model has been
         | 
| 255 | 
            +
                    created", "progress": 1}, "tags": [], "updated": "2012-06-20T03:57:33.502000"}]}'
         | 
| 256 | 
            +
                http_version: '1.1'
         | 
| 257 | 
            +
              recorded_at: Wed, 20 Jun 2012 03:57:45 GMT
         | 
| 258 | 
            +
            recorded_with: VCR 2.2.2
         | 
| @@ -0,0 +1,375 @@ | |
| 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:53:56 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:57:57.649000", "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/4fe14a451552687d43000133", "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:33.219000"}]}'
         | 
| 45 | 
            +
                http_version: '1.1'
         | 
| 46 | 
            +
              recorded_at: Wed, 20 Jun 2012 03:57:46 GMT
         | 
| 47 | 
            +
            - request:
         | 
| 48 | 
            +
                method: delete
         | 
| 49 | 
            +
                uri: https://bigml.io/andromeda/source/4fe14a451552687d43000133?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:17 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:57:48 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:53:59 GMT
         | 
| 94 | 
            +
                  server:
         | 
| 95 | 
            +
                  - nginx/1.0.12
         | 
| 96 | 
            +
                  transfer-encoding:
         | 
| 97 | 
            +
                  - chunked
         | 
| 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:57:58.955000", "credits": 0.0087890625, "description":
         | 
| 105 | 
            +
                    "", "locale": "en_US", "name": "iris'' dataset", "number_of_models": 1, "number_of_predictions":
         | 
| 106 | 
            +
                    0, "private": true, "resource": "dataset/4fe14a461552687d42000145", "rows":
         | 
| 107 | 
            +
                    150, "size": 4608, "source": "source/4fe14a451552687d43000133", "source_status":
         | 
| 108 | 
            +
                    false, "status": {"bytes": 4608, "code": 5, "elapsed": 228, "field_errors":
         | 
| 109 | 
            +
                    [], "message": "The dataset has been created", "row_format_errors": [], "serialized_rows":
         | 
| 110 | 
            +
                    150}, "tags": [], "updated": "2012-06-20T03:57:33.226000"}]}'
         | 
| 111 | 
            +
                http_version: '1.1'
         | 
| 112 | 
            +
              recorded_at: Wed, 20 Jun 2012 03:57:49 GMT
         | 
| 113 | 
            +
            - request:
         | 
| 114 | 
            +
                method: delete
         | 
| 115 | 
            +
                uri: https://bigml.io/andromeda/dataset/4fe14a461552687d42000145?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:20 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:57:51 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:01 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:33.206000", "credits": 0.03515625, "dataset":
         | 
| 171 | 
            +
                    "dataset/4fe14a461552687d42000145", "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/4fe14a2d035d074a1e0000f7", "rows":
         | 
| 176 | 
            +
                    150, "size": 4608, "source": "source/4fe14a451552687d43000133", "source_status":
         | 
| 177 | 
            +
                    false, "status": {"code": 5, "elapsed": 150, "message": "The model has been
         | 
| 178 | 
            +
                    created", "progress": 1}, "tags": [], "updated": "2012-06-20T03:57:34.597000"}]}'
         | 
| 179 | 
            +
                http_version: '1.1'
         | 
| 180 | 
            +
              recorded_at: Wed, 20 Jun 2012 03:57:52 GMT
         | 
| 181 | 
            +
            - request:
         | 
| 182 | 
            +
                method: delete
         | 
| 183 | 
            +
                uri: https://bigml.io/andromeda/model/4fe14a2d035d074a1e0000f7?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:22 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:57:53 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:04 GMT
         | 
| 232 | 
            +
                  location:
         | 
| 233 | 
            +
                  - http://bigml.io/andromeda/source/4fe14a37035d074a1b000113
         | 
| 234 | 
            +
                  server:
         | 
| 235 | 
            +
                  - nginx/1.0.12
         | 
| 236 | 
            +
                  content-length:
         | 
| 237 | 
            +
                  - '567'
         | 
| 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:57:43.613354", "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/4fe14a37035d074a1b000113", "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:57:43.613380"}'
         | 
| 250 | 
            +
                http_version: '1.1'
         | 
| 251 | 
            +
              recorded_at: Wed, 20 Jun 2012 03:57:54 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/4fe14a37035d074a1b000113"}'
         | 
| 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:25 GMT
         | 
| 272 | 
            +
                  location:
         | 
| 273 | 
            +
                  - http://bigml.io/andromeda/dataset/4fe14a38035d074a1c0000fb
         | 
| 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:57:44.916904",
         | 
| 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/4fe14a38035d074a1c0000fb", "rows": 0, "size": 4608,
         | 
| 291 | 
            +
                    "source": "source/4fe14a37035d074a1b000113", "source_status": true, "status":
         | 
| 292 | 
            +
                    {"code": 1, "message": "The dataset is being processed and will be created
         | 
| 293 | 
            +
                    soon"}, "tags": [], "updated": "2012-06-20T03:57:44.916923"}'
         | 
| 294 | 
            +
                http_version: '1.1'
         | 
| 295 | 
            +
              recorded_at: Wed, 20 Jun 2012 03:57:56 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/4fe14a38035d074a1c0000fb"}'
         | 
| 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:07 GMT
         | 
| 316 | 
            +
                  location:
         | 
| 317 | 
            +
                  - http://bigml.io/andromeda/model/4fe14a561552687d42000148
         | 
| 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:14.682267",
         | 
| 327 | 
            +
                    "credits": 0.03515625, "dataset": "dataset/4fe14a38035d074a1c0000fb", "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/4fe14a561552687d42000148", "rows": 150, "size": 4608, "source": "source/4fe14a37035d074a1b000113",
         | 
| 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:14.682285"}'
         | 
| 334 | 
            +
                http_version: '1.1'
         | 
| 335 | 
            +
              recorded_at: Wed, 20 Jun 2012 03:57:57 GMT
         | 
| 336 | 
            +
            - request:
         | 
| 337 | 
            +
                method: get
         | 
| 338 | 
            +
                uri: https://bigml.io/andromeda/model?username=<USERNAME>&api_key=<API_KEY>
         | 
| 339 | 
            +
                body:
         | 
| 340 | 
            +
                  encoding: US-ASCII
         | 
| 341 | 
            +
                  string: ''
         | 
| 342 | 
            +
                headers:
         | 
| 343 | 
            +
                  connection:
         | 
| 344 | 
            +
                  - close
         | 
| 345 | 
            +
              response:
         | 
| 346 | 
            +
                status:
         | 
| 347 | 
            +
                  code: 200
         | 
| 348 | 
            +
                  message: OK
         | 
| 349 | 
            +
                headers:
         | 
| 350 | 
            +
                  content-type:
         | 
| 351 | 
            +
                  - application/json; charset=utf-8
         | 
| 352 | 
            +
                  date:
         | 
| 353 | 
            +
                  - Wed, 20 Jun 2012 03:56:28 GMT
         | 
| 354 | 
            +
                  server:
         | 
| 355 | 
            +
                  - nginx/1.0.12
         | 
| 356 | 
            +
                  content-length:
         | 
| 357 | 
            +
                  - '841'
         | 
| 358 | 
            +
                  connection:
         | 
| 359 | 
            +
                  - Close
         | 
| 360 | 
            +
                body:
         | 
| 361 | 
            +
                  encoding: US-ASCII
         | 
| 362 | 
            +
                  string: ! '{"meta": {"limit": 20, "next": null, "offset": 0, "previous": null,
         | 
| 363 | 
            +
                    "total_count": 1}, "objects": [{"category": 0, "code": 200, "columns": 5,
         | 
| 364 | 
            +
                    "created": "2012-06-20T03:58:14.682000", "credits": 0.03515625, "dataset":
         | 
| 365 | 
            +
                    "dataset/4fe14a38035d074a1c0000fb", "dataset_status": true, "description":
         | 
| 366 | 
            +
                    "", "holdout": 0.0, "input_fields": ["000000", "000001", "000002", "000003"],
         | 
| 367 | 
            +
                    "locale": "en_US", "max_columns": 5, "max_rows": 150, "name": "iris'' dataset
         | 
| 368 | 
            +
                    model", "number_of_predictions": 0, "objective_fields": ["000004"], "private":
         | 
| 369 | 
            +
                    true, "range": [1, 150], "resource": "model/4fe14a561552687d42000148", "rows":
         | 
| 370 | 
            +
                    150, "size": 4608, "source": "source/4fe14a37035d074a1b000113", "source_status":
         | 
| 371 | 
            +
                    true, "status": {"code": 5, "elapsed": 158, "message": "The model has been
         | 
| 372 | 
            +
                    created", "progress": 1}, "tags": [], "updated": "2012-06-20T03:58:14.932000"}]}'
         | 
| 373 | 
            +
                http_version: '1.1'
         | 
| 374 | 
            +
              recorded_at: Wed, 20 Jun 2012 03:57:59 GMT
         | 
| 375 | 
            +
            recorded_with: VCR 2.2.2
         |