From 0f5a4ded48040c1d75f222da2d9d17f5049b2951 Mon Sep 17 00:00:00 2001 From: wassname Date: Sat, 9 Dec 2017 13:19:04 +0800 Subject: [PATCH] fix dummy loss --- predict_genetics.ipynb | 141 ++- scrape_data.ipynb | 2212 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 2305 insertions(+), 48 deletions(-) diff --git a/predict_genetics.ipynb b/predict_genetics.ipynb index c2f9d11..2e03963 100644 --- a/predict_genetics.ipynb +++ b/predict_genetics.ipynb @@ -4329,11 +4329,11 @@ }, { "cell_type": "code", - "execution_count": 845, + "execution_count": 853, "metadata": { "ExecuteTime": { - "end_time": "2017-12-09T05:13:10.132288Z", - "start_time": "2017-12-09T05:13:09.985293Z" + "end_time": "2017-12-09T05:17:03.149046Z", + "start_time": "2017-12-09T05:17:03.020120Z" } }, "outputs": [ @@ -4341,8 +4341,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "mean mean absolute error ($) 18.9902441713\n", - "median mean absolute error ($) 18.9369209377\n" + "mean mean absolute error ($) 28.2072223243\n", + "median mean absolute error ($) 28.1958325447\n" ] } ], @@ -4353,10 +4353,12 @@ " clf = DummyRegressor(strategy=strategy)\n", " clf.fit(X_train, y_train)\n", " y_pred = clf.predict(X_test)\n", - " mae = sklearn.metrics.mean_absolute_error(y_test, y_pred)\n", + " \n", " if use_log_y:\n", - " mae = np.exp(mae)\n", - " print(strategy,'mean absolute error ($)', np.exp(mae)) " + " mae = sklearn.metrics.mean_absolute_error(np.exp(y_test), np.exp(y_pred))\n", + " else:\n", + " mae = sklearn.metrics.mean_absolute_error(y_test, y_pred)\n", + " print(strategy,'mean absolute error ($)', mae)" ] }, { @@ -4374,11 +4376,11 @@ }, { "cell_type": "code", - "execution_count": 846, + "execution_count": 857, "metadata": { "ExecuteTime": { - "end_time": "2017-12-09T05:13:10.338171Z", - "start_time": "2017-12-09T05:13:10.262168Z" + "end_time": "2017-12-09T05:17:58.854965Z", + "start_time": "2017-12-09T05:17:58.779727Z" } }, "outputs": [ @@ -4389,17 +4391,17 @@ "_________________________________________________________________\n", "Layer (type) Output Shape Param # \n", "=================================================================\n", - "input_73 (InputLayer) (None, 517) 0 \n", + "input_74 (InputLayer) (None, 517) 0 \n", "_________________________________________________________________\n", - "dense_121 (Dense) (None, 128) 66304 \n", + "dense_126 (Dense) (None, 128) 66304 \n", "_________________________________________________________________\n", - "dense_122 (Dense) (None, 64) 8256 \n", + "dense_127 (Dense) (None, 64) 8256 \n", "_________________________________________________________________\n", - "dense_123 (Dense) (None, 32) 2080 \n", + "dense_128 (Dense) (None, 32) 2080 \n", "_________________________________________________________________\n", - "dense_124 (Dense) (None, 16) 528 \n", + "dense_129 (Dense) (None, 16) 528 \n", "_________________________________________________________________\n", - "dense_125 (Dense) (None, 1) 17 \n", + "dense_130 (Dense) (None, 1) 17 \n", "=================================================================\n", "Total params: 77,185\n", "Trainable params: 77,185\n", @@ -4426,10 +4428,11 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 858, "metadata": { "ExecuteTime": { - "start_time": "2017-12-09T05:13:32.909Z" + "end_time": "2017-12-09T05:18:17.021414Z", + "start_time": "2017-12-09T05:17:59.093828Z" }, "scrolled": true }, @@ -4440,31 +4443,39 @@ "text": [ "Train on 19963 samples, validate on 4991 samples\n", "Epoch 1/100\n", - "19963/19963 [==============================] - 2s - loss: 0.9538 - acc: 0.0000e+00 - val_loss: 0.9735 - val_acc: 0.0000e+00\n", + "19963/19963 [==============================] - 3s - loss: 1.0874 - acc: 0.0000e+00 - val_loss: 1.0069 - val_acc: 0.0000e+00\n", "Epoch 2/100\n", - "19963/19963 [==============================] - 2s - loss: 0.9482 - acc: 0.0000e+00 - val_loss: 0.9737 - val_acc: 0.0000e+00\n", + "19963/19963 [==============================] - 2s - loss: 1.0223 - acc: 0.0000e+00 - val_loss: 0.9994 - val_acc: 0.0000e+00\n", "Epoch 3/100\n", - "19963/19963 [==============================] - 2s - loss: 0.9393 - acc: 0.0000e+00 - val_loss: 0.9669 - val_acc: 0.0000e+00\n", + "19963/19963 [==============================] - 2s - loss: 1.0012 - acc: 0.0000e+00 - val_loss: 0.9899 - val_acc: 0.0000e+00\n", "Epoch 4/100\n", - "19963/19963 [==============================] - 2s - loss: 0.9357 - acc: 0.0000e+00 - val_loss: 0.9589 - val_acc: 0.0000e+00\n", + "19963/19963 [==============================] - 2s - loss: 0.9885 - acc: 0.0000e+00 - val_loss: 0.9825 - val_acc: 0.0000e+00\n", "Epoch 5/100\n", - "19963/19963 [==============================] - 2s - loss: 0.9279 - acc: 0.0000e+00 - val_loss: 0.9663 - val_acc: 0.0000e+00\n", + "19963/19963 [==============================] - 2s - loss: 0.9736 - acc: 0.0000e+00 - val_loss: 0.9748 - val_acc: 0.0000e+00\n", "Epoch 6/100\n", - "19963/19963 [==============================] - 2s - loss: 0.9232 - acc: 0.0000e+00 - val_loss: 0.9615 - val_acc: 0.0000e+00\n", + "19963/19963 [==============================] - 2s - loss: 0.9646 - acc: 0.0000e+00 - val_loss: 0.9937 - val_acc: 0.0000e+00\n", "Epoch 7/100\n", - "19963/19963 [==============================] - 2s - loss: 0.9145 - acc: 0.0000e+00 - val_loss: 0.9618 - val_acc: 0.0000e+00\n", - "Epoch 8/100\n", - "19963/19963 [==============================] - 2s - loss: 0.9102 - acc: 0.0000e+00 - val_loss: 0.9617 - val_acc: 0.0000e+00\n", - "Epoch 9/100\n", - "19963/19963 [==============================] - 2s - loss: 0.9022 - acc: 0.0000e+00 - val_loss: 0.9765 - val_acc: 0.0000e+00\n", - "Epoch 10/100\n", - "19963/19963 [==============================] - 2s - loss: 0.8954 - acc: 0.0000e+00 - val_loss: 0.9623 - val_acc: 0.0000e+00\n", - "Epoch 11/100\n", - "19963/19963 [==============================] - 2s - loss: 0.8892 - acc: 0.0000e+00 - val_loss: 0.9680 - val_acc: 0.0000e+00\n", - "Epoch 12/100\n", - "19963/19963 [==============================] - 2s - loss: 0.8811 - acc: 0.0000e+00 - val_loss: 0.9775 - val_acc: 0.0000e+00\n", - "Epoch 13/100\n", - " 1280/19963 [>.............................] - ETA: 2s - loss: 0.9036 - acc: 0.0000e+00" + " 4352/19963 [=====>........................] - ETA: 2s - loss: 0.9492 - acc: 0.0000e+00" + ] + }, + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mhistory\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mmodel\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfit\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mX_train\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my_train\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mvalidation_split\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m0.2\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mepochs\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m100\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;32m~/.pyenv/versions/3.5.3/envs/jupyter3/lib/python3.5/site-packages/keras/models.py\u001b[0m in \u001b[0;36mfit\u001b[0;34m(self, x, y, batch_size, epochs, verbose, callbacks, validation_split, validation_data, shuffle, class_weight, sample_weight, initial_epoch, **kwargs)\u001b[0m\n\u001b[1;32m 868\u001b[0m \u001b[0mclass_weight\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mclass_weight\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 869\u001b[0m \u001b[0msample_weight\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0msample_weight\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 870\u001b[0;31m initial_epoch=initial_epoch)\n\u001b[0m\u001b[1;32m 871\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 872\u001b[0m def evaluate(self, x, y, batch_size=32, verbose=1,\n", + "\u001b[0;32m~/.pyenv/versions/3.5.3/envs/jupyter3/lib/python3.5/site-packages/keras/engine/training.py\u001b[0m in \u001b[0;36mfit\u001b[0;34m(self, x, y, batch_size, epochs, verbose, callbacks, validation_split, validation_data, shuffle, class_weight, sample_weight, initial_epoch, **kwargs)\u001b[0m\n\u001b[1;32m 1505\u001b[0m \u001b[0mval_f\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mval_f\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mval_ins\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mval_ins\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mshuffle\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mshuffle\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1506\u001b[0m \u001b[0mcallback_metrics\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mcallback_metrics\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1507\u001b[0;31m initial_epoch=initial_epoch)\n\u001b[0m\u001b[1;32m 1508\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1509\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mevaluate\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mx\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbatch_size\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m32\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mverbose\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msample_weight\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.pyenv/versions/3.5.3/envs/jupyter3/lib/python3.5/site-packages/keras/engine/training.py\u001b[0m in \u001b[0;36m_fit_loop\u001b[0;34m(self, f, ins, out_labels, batch_size, epochs, verbose, callbacks, val_f, val_ins, shuffle, callback_metrics, initial_epoch)\u001b[0m\n\u001b[1;32m 1154\u001b[0m \u001b[0mbatch_logs\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'size'\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mbatch_ids\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1155\u001b[0m \u001b[0mcallbacks\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mon_batch_begin\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mbatch_index\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbatch_logs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1156\u001b[0;31m \u001b[0mouts\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mf\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mins_batch\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1157\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0misinstance\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mouts\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlist\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1158\u001b[0m \u001b[0mouts\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m[\u001b[0m\u001b[0mouts\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.pyenv/versions/3.5.3/envs/jupyter3/lib/python3.5/site-packages/keras/backend/tensorflow_backend.py\u001b[0m in \u001b[0;36m__call__\u001b[0;34m(self, inputs)\u001b[0m\n\u001b[1;32m 2267\u001b[0m updated = session.run(self.outputs + [self.updates_op],\n\u001b[1;32m 2268\u001b[0m \u001b[0mfeed_dict\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mfeed_dict\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2269\u001b[0;31m **self.session_kwargs)\n\u001b[0m\u001b[1;32m 2270\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mupdated\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0moutputs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2271\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.pyenv/versions/3.5.3/envs/jupyter3/lib/python3.5/site-packages/tensorflow/python/client/session.py\u001b[0m in \u001b[0;36mrun\u001b[0;34m(self, fetches, feed_dict, options, run_metadata)\u001b[0m\n\u001b[1;32m 893\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 894\u001b[0m result = self._run(None, fetches, feed_dict, options_ptr,\n\u001b[0;32m--> 895\u001b[0;31m run_metadata_ptr)\n\u001b[0m\u001b[1;32m 896\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mrun_metadata\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 897\u001b[0m \u001b[0mproto_data\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mtf_session\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mTF_GetBuffer\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrun_metadata_ptr\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.pyenv/versions/3.5.3/envs/jupyter3/lib/python3.5/site-packages/tensorflow/python/client/session.py\u001b[0m in \u001b[0;36m_run\u001b[0;34m(self, handle, fetches, feed_dict, options, run_metadata)\u001b[0m\n\u001b[1;32m 1122\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mfinal_fetches\u001b[0m \u001b[0;32mor\u001b[0m \u001b[0mfinal_targets\u001b[0m \u001b[0;32mor\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mhandle\u001b[0m \u001b[0;32mand\u001b[0m \u001b[0mfeed_dict_tensor\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1123\u001b[0m results = self._do_run(handle, final_targets, final_fetches,\n\u001b[0;32m-> 1124\u001b[0;31m feed_dict_tensor, options, run_metadata)\n\u001b[0m\u001b[1;32m 1125\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1126\u001b[0m \u001b[0mresults\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m[\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.pyenv/versions/3.5.3/envs/jupyter3/lib/python3.5/site-packages/tensorflow/python/client/session.py\u001b[0m in \u001b[0;36m_do_run\u001b[0;34m(self, handle, target_list, fetch_list, feed_dict, options, run_metadata)\u001b[0m\n\u001b[1;32m 1319\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mhandle\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1320\u001b[0m return self._do_call(_run_fn, self._session, feeds, fetches, targets,\n\u001b[0;32m-> 1321\u001b[0;31m options, run_metadata)\n\u001b[0m\u001b[1;32m 1322\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1323\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_do_call\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0m_prun_fn\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_session\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mhandle\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mfeeds\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mfetches\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.pyenv/versions/3.5.3/envs/jupyter3/lib/python3.5/site-packages/tensorflow/python/client/session.py\u001b[0m in \u001b[0;36m_do_call\u001b[0;34m(self, fn, *args)\u001b[0m\n\u001b[1;32m 1325\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_do_call\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mfn\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1326\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1327\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mfn\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1328\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0merrors\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mOpError\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1329\u001b[0m \u001b[0mmessage\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcompat\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mas_text\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0me\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mmessage\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.pyenv/versions/3.5.3/envs/jupyter3/lib/python3.5/site-packages/tensorflow/python/client/session.py\u001b[0m in \u001b[0;36m_run_fn\u001b[0;34m(session, feed_dict, fetch_list, target_list, options, run_metadata)\u001b[0m\n\u001b[1;32m 1304\u001b[0m return tf_session.TF_Run(session, options,\n\u001b[1;32m 1305\u001b[0m \u001b[0mfeed_dict\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mfetch_list\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtarget_list\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1306\u001b[0;31m status, run_metadata)\n\u001b[0m\u001b[1;32m 1307\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1308\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_prun_fn\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msession\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mhandle\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mfeed_dict\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mfetch_list\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: " ] } ], @@ -4477,6 +4488,7 @@ "execution_count": null, "metadata": { "ExecuteTime": { + "end_time": "2017-12-09T05:15:37.170853Z", "start_time": "2017-12-09T05:13:35.064Z" } }, @@ -4496,32 +4508,65 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 859, "metadata": { "ExecuteTime": { - "start_time": "2017-12-09T05:13:35.948Z" + "end_time": "2017-12-09T05:18:18.938022Z", + "start_time": "2017-12-09T05:18:18.740891Z" } }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2304/2773 [=======================>......] - ETA: 0s" + ] + }, + { + "data": { + "text/plain": [ + "{'acc': 0.0, 'loss': 0.95822394375675557}" + ] + }, + "execution_count": 859, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "metrics = model.evaluate(X_test,y_test)\n", "metrics = dict(zip(model.metrics_names, metrics))\n", - "if use_log_mae:\n", - " metrics['mae_dollars']=np.exp(metrics['loss'])\n", "metrics" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 860, "metadata": { "ExecuteTime": { - "end_time": "2017-12-09T05:01:44.599815Z", - "start_time": "2017-12-09T05:01:44.106757Z" + "end_time": "2017-12-09T05:18:19.875146Z", + "start_time": "2017-12-09T05:18:19.404365Z" } }, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "26.219251685788045" + ] + }, + "execution_count": 860, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# I got ~26 which is not great\n", + "y_pred = model.predict(X_test)\n", + "mae = sklearn.metrics.mean_absolute_error(np.exp(y_test), np.exp(y_pred))\n", + "mae" + ] }, { "cell_type": "code", diff --git a/scrape_data.ipynb b/scrape_data.ipynb index 32e4c71..aa5ee2f 100644 --- a/scrape_data.ipynb +++ b/scrape_data.ipynb @@ -82355,6 +82355,2218 @@ "\r", " 56%|█████▌ | 5465/9716 [4:52:21<3:47:24, 3.21s/it]" ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 78357 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5466/9716 [4:52:23<3:47:20, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171275 20 92922 78340 [94543, 94542, 94541, 94540, 94539, 94538, 94537, 94536, 94535, 94534, 94533, 94532, 94531, 94530, 94529, 94528, 94527, 94526, 94525, 94524]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5467/9716 [4:52:26<3:47:17, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171275 20 92939 78336 [94560, 94559, 94558, 94557, 94556, 94555, 94554, 94553, 94552, 94551, 94550, 94549, 94548, 94547, 94546, 94545, 94544, 94543, 94542, 94541]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5468/9716 [4:52:28<3:47:13, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171275 20 92956 78319 [94577, 94576, 94575, 94574, 94573, 94572, 94571, 94570, 94569, 94568, 94567, 94566, 94565, 94564, 94563, 94562, 94561, 94560, 94559, 94558]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5469/9716 [4:52:31<3:47:09, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171275 20 92973 78302 [94594, 94593, 94592, 94591, 94590, 94589, 94588, 94587, 94586, 94585, 94584, 94583, 94582, 94581, 94580, 94579, 94578, 94577, 94576, 94575]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5470/9716 [4:52:33<3:47:05, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171275 20 92990 78285 [94611, 94610, 94609, 94608, 94607, 94606, 94605, 94604, 94603, 94602, 94601, 94600, 94599, 94598, 94597, 94596, 94595, 94594, 94593, 94592]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5471/9716 [4:52:36<3:47:02, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171275 20 93007 78268 [94628, 94627, 94626, 94625, 94624, 94623, 94622, 94621, 94620, 94619, 94618, 94617, 94616, 94615, 94614, 94613, 94612, 94611, 94610, 94609]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5472/9716 [4:52:38<3:46:58, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171275 20 93024 78251 [94645, 94644, 94643, 94642, 94641, 94640, 94639, 94638, 94637, 94636, 94635, 94634, 94633, 94632, 94631, 94630, 94629, 94628, 94627, 94626]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5473/9716 [4:52:41<3:46:54, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171275 20 93041 78234 [94662, 94661, 94660, 94659, 94658, 94657, 94656, 94655, 94654, 94653, 94652, 94651, 94650, 94649, 94648, 94647, 94646, 94645, 94644, 94643]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5474/9716 [4:52:43<3:46:50, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171275 20 93058 78217 [94679, 94678, 94677, 94676, 94675, 94674, 94673, 94672, 94671, 94670, 94669, 94668, 94667, 94666, 94665, 94664, 94663, 94662, 94661, 94660]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5475/9716 [4:52:46<3:46:47, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171275 20 93075 78200 [94696, 94695, 94694, 94693, 94692, 94691, 94690, 94689, 94688, 94687, 94686, 94685, 94684, 94683, 94682, 94681, 94680, 94679, 94678, 94677]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5476/9716 [4:52:48<3:46:43, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171275 20 93092 78183 [94713, 94712, 94711, 94710, 94709, 94708, 94707, 94706, 94705, 94704, 94703, 94702, 94701, 94700, 94699, 94698, 94697, 94696, 94695, 94694]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5477/9716 [4:52:51<3:46:39, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171284 20 93109 78166 [94733, 94732, 94731, 94730, 94729, 94728, 94727, 94726, 94725, 94724, 94723, 94722, 94721, 94720, 94719, 94718, 94717, 94716, 94715, 94714]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5478/9716 [4:52:53<3:46:35, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171284 20 93126 78158 [94747, 94746, 94745, 94744, 94743, 94742, 94741, 94740, 94739, 94738, 94737, 94736, 94735, 94734, 94733, 94732, 94731, 94730, 94729, 94728]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5479/9716 [4:52:56<3:46:31, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171284 20 93143 78141 [94764, 94763, 94762, 94761, 94760, 94759, 94758, 94757, 94756, 94755, 94754, 94753, 94752, 94751, 94750, 94749, 94748, 94747, 94746, 94745]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5480/9716 [4:52:58<3:46:28, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171284 20 93160 78124 [94781, 94780, 94779, 94778, 94777, 94776, 94775, 94774, 94773, 94772, 94771, 94770, 94769, 94768, 94767, 94766, 94765, 94764, 94763, 94762]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5481/9716 [4:53:01<3:46:24, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171284 20 93177 78107 [94798, 94797, 94796, 94795, 94794, 94793, 94792, 94791, 94790, 94789, 94788, 94787, 94786, 94785, 94784, 94783, 94782, 94781, 94780, 94779]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5482/9716 [4:53:04<3:46:21, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171284 20 93194 78090 [94815, 94814, 94813, 94812, 94811, 94810, 94809, 94808, 94807, 94806, 94805, 94804, 94803, 94802, 94801, 94800, 94799, 94798, 94797, 94796]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5483/9716 [4:53:06<3:46:17, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171291 20 93211 78073 [94832, 94831, 94830, 94829, 94828, 94827, 94826, 94825, 94824, 94823, 94822, 94821, 94820, 94819, 94818, 94817, 94816, 94815, 94814, 94813]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5484/9716 [4:53:09<3:46:13, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171300 20 93228 78063 [94858, 94857, 94856, 94855, 94854, 94853, 94852, 94851, 94850, 94849, 94848, 94847, 94846, 94845, 94844, 94843, 94842, 94841, 94840, 94839]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5485/9716 [4:53:11<3:46:09, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171300 20 93245 78055 [94866, 94865, 94864, 94863, 94862, 94861, 94860, 94859, 94858, 94857, 94856, 94855, 94854, 94853, 94852, 94851, 94850, 94849, 94848, 94847]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5486/9716 [4:53:12<3:46:04, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 78038 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5487/9716 [4:53:12<3:45:59, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 78021 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5488/9716 [4:53:13<3:45:54, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 78004 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 56%|█████▋ | 5489/9716 [4:53:14<3:45:48, 3.21s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77987 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5490/9716 [4:53:14<3:45:43, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77970 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5491/9716 [4:53:15<3:45:38, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77953 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5492/9716 [4:53:15<3:45:33, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77936 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5493/9716 [4:53:16<3:45:28, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77919 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5494/9716 [4:53:17<3:45:22, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77902 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5495/9716 [4:53:17<3:45:17, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77885 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5496/9716 [4:53:18<3:45:12, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77868 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5497/9716 [4:53:18<3:45:07, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77851 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5498/9716 [4:53:19<3:45:02, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77834 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5499/9716 [4:53:20<3:44:56, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77817 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5500/9716 [4:53:20<3:44:51, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77800 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5501/9716 [4:53:21<3:44:46, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77783 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5502/9716 [4:53:24<3:44:43, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171319 20 93534 77766 [95163, 95162, 95161, 95160, 95159, 95158, 95157, 95156, 95155, 95154, 95153, 95152, 95151, 95150, 95149, 95148, 95147, 95146, 95145, 95144]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5503/9716 [4:53:26<3:44:39, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171319 20 93551 77768 [95172, 95171, 95170, 95169, 95168, 95167, 95166, 95165, 95164, 95163, 95162, 95161, 95160, 95159, 95158, 95157, 95156, 95155, 95154, 95153]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5504/9716 [4:53:29<3:44:35, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171319 20 93568 77751 [95189, 95188, 95187, 95186, 95185, 95184, 95183, 95182, 95181, 95180, 95179, 95178, 95177, 95176, 95175, 95174, 95173, 95172, 95171, 95170]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5505/9716 [4:53:32<3:44:32, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171321 20 93585 77734 [95206, 95205, 95204, 95203, 95202, 95201, 95200, 95199, 95198, 95197, 95196, 95195, 95194, 95193, 95192, 95191, 95190, 95189, 95188, 95187]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5506/9716 [4:53:34<3:44:28, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171324 20 93602 77719 [95226, 95225, 95224, 95223, 95222, 95221, 95220, 95219, 95218, 95217, 95216, 95215, 95214, 95213, 95212, 95211, 95210, 95209, 95208, 95207]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5507/9716 [4:53:37<3:44:24, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171324 20 93619 77705 [95240, 95239, 95238, 95237, 95236, 95235, 95234, 95233, 95232, 95231, 95230, 95229, 95228, 95227, 95226, 95225, 95224, 95223, 95222, 95221]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5508/9716 [4:53:39<3:44:21, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171324 20 93636 77688 [95257, 95256, 95255, 95254, 95253, 95252, 95251, 95250, 95249, 95248, 95247, 95246, 95245, 95244, 95243, 95242, 95241, 95240, 95239, 95238]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5509/9716 [4:53:42<3:44:17, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171324 20 93653 77671 [95274, 95273, 95272, 95271, 95270, 95269, 95268, 95267, 95266, 95265, 95264, 95263, 95262, 95261, 95260, 95259, 95258, 95257, 95256, 95255]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5510/9716 [4:53:44<3:44:13, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171336 20 93670 77654 [95292, 95291, 95290, 95289, 95288, 95287, 95286, 95285, 95284, 95283, 95282, 95281, 95280, 95279, 95278, 95277, 95276, 95275, 95274, 95273]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5511/9716 [4:53:47<3:44:09, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171336 20 93687 77649 [95308, 95307, 95306, 95305, 95304, 95303, 95302, 95301, 95300, 95299, 95298, 95297, 95296, 95295, 95294, 95293, 95292, 95291, 95290, 95289]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5512/9716 [4:53:49<3:44:06, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171336 20 93704 77632 [95325, 95324, 95323, 95322, 95321, 95320, 95319, 95318, 95317, 95316, 95315, 95314, 95313, 95312, 95311, 95310, 95309, 95308, 95307, 95306]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5513/9716 [4:53:52<3:44:02, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171336 20 93721 77615 [95342, 95341, 95340, 95339, 95338, 95337, 95336, 95335, 95334, 95333, 95332, 95331, 95330, 95329, 95328, 95327, 95326, 95325, 95324, 95323]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5514/9716 [4:53:55<3:43:59, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171336 20 93738 77598 [95359, 95358, 95357, 95356, 95355, 95354, 95353, 95352, 95351, 95350, 95349, 95348, 95347, 95346, 95345, 95344, 95343, 95342, 95341, 95340]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5515/9716 [4:53:57<3:43:55, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171336 20 93755 77581 [95376, 95375, 95374, 95373, 95372, 95371, 95370, 95369, 95368, 95367, 95366, 95365, 95364, 95363, 95362, 95361, 95360, 95359, 95358, 95357]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5516/9716 [4:53:59<3:43:51, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171336 20 93772 77564 [95393, 95392, 95391, 95390, 95389, 95388, 95387, 95386, 95385, 95384, 95383, 95382, 95381, 95380, 95379, 95378, 95377, 95376, 95375, 95374]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5517/9716 [4:54:02<3:43:47, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171336 20 93789 77547 [95410, 95409, 95408, 95407, 95406, 95405, 95404, 95403, 95402, 95401, 95400, 95399, 95398, 95397, 95396, 95395, 95394, 95393, 95392, 95391]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5518/9716 [4:54:04<3:43:43, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171336 20 93806 77530 [95427, 95426, 95425, 95424, 95423, 95422, 95421, 95420, 95419, 95418, 95417, 95416, 95415, 95414, 95413, 95412, 95411, 95410, 95409, 95408]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5519/9716 [4:54:07<3:43:40, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171336 20 93823 77513 [95444, 95443, 95442, 95441, 95440, 95439, 95438, 95437, 95436, 95435, 95434, 95433, 95432, 95431, 95430, 95429, 95428, 95427, 95426, 95425]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5520/9716 [4:54:10<3:43:36, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171336 20 93840 77496 [95461, 95460, 95459, 95458, 95457, 95456, 95455, 95454, 95453, 95452, 95451, 95450, 95449, 95448, 95447, 95446, 95445, 95444, 95443, 95442]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5521/9716 [4:54:12<3:43:32, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171336 20 93857 77479 [95478, 95477, 95476, 95475, 95474, 95473, 95472, 95471, 95470, 95469, 95468, 95467, 95466, 95465, 95464, 95463, 95462, 95461, 95460, 95459]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5522/9716 [4:54:13<3:43:27, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77462 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5523/9716 [4:54:13<3:43:22, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77445 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5524/9716 [4:54:14<3:43:17, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77428 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5525/9716 [4:54:14<3:43:12, 3.20s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77411 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5526/9716 [4:54:15<3:43:07, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77394 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5527/9716 [4:54:16<3:43:01, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77377 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5528/9716 [4:54:16<3:42:56, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77360 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5529/9716 [4:54:17<3:42:51, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77343 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5530/9716 [4:54:17<3:42:46, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77326 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5531/9716 [4:54:18<3:42:41, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77309 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5532/9716 [4:54:19<3:42:36, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77292 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5533/9716 [4:54:19<3:42:30, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77275 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5534/9716 [4:54:20<3:42:25, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77258 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5535/9716 [4:54:20<3:42:20, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77241 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5536/9716 [4:54:21<3:42:15, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 77224 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5537/9716 [4:54:24<3:42:11, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171336 20 94129 77207 [95750, 95749, 95748, 95747, 95746, 95745, 95744, 95743, 95742, 95741, 95740, 95739, 95738, 95737, 95736, 95735, 95734, 95733, 95732, 95731]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5538/9716 [4:54:26<3:42:08, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171341 20 94146 77190 [95772, 95771, 95770, 95769, 95768, 95767, 95766, 95765, 95764, 95763, 95762, 95761, 95760, 95759, 95758, 95757, 95756, 95755, 95754, 95753]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5539/9716 [4:54:29<3:42:04, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171341 20 94163 77178 [95784, 95783, 95782, 95781, 95780, 95779, 95778, 95777, 95776, 95775, 95774, 95773, 95772, 95771, 95770, 95769, 95768, 95767, 95766, 95765]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5540/9716 [4:54:31<3:42:00, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171341 20 94180 77161 [95801, 95800, 95799, 95798, 95797, 95796, 95795, 95794, 95793, 95792, 95791, 95790, 95789, 95788, 95787, 95786, 95785, 95784, 95783, 95782]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5541/9716 [4:54:34<3:41:57, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171341 20 94197 77144 [95818, 95817, 95816, 95815, 95814, 95813, 95812, 95811, 95810, 95809, 95808, 95807, 95806, 95805, 95804, 95803, 95802, 95801, 95800, 95799]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5542/9716 [4:54:36<3:41:53, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171341 20 94214 77127 [95835, 95834, 95833, 95832, 95831, 95830, 95829, 95828, 95827, 95826, 95825, 95824, 95823, 95822, 95821, 95820, 95819, 95818, 95817, 95816]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5543/9716 [4:54:39<3:41:49, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171341 20 94231 77110 [95852, 95851, 95850, 95849, 95848, 95847, 95846, 95845, 95844, 95843, 95842, 95841, 95840, 95839, 95838, 95837, 95836, 95835, 95834, 95833]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5544/9716 [4:54:41<3:41:46, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171341 20 94248 77093 [95869, 95868, 95867, 95866, 95865, 95864, 95863, 95862, 95861, 95860, 95859, 95858, 95857, 95856, 95855, 95854, 95853, 95852, 95851, 95850]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5545/9716 [4:54:44<3:41:42, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171341 20 94265 77076 [95886, 95885, 95884, 95883, 95882, 95881, 95880, 95879, 95878, 95877, 95876, 95875, 95874, 95873, 95872, 95871, 95870, 95869, 95868, 95867]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5546/9716 [4:54:46<3:41:38, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171341 20 94282 77059 [95903, 95902, 95901, 95900, 95899, 95898, 95897, 95896, 95895, 95894, 95893, 95892, 95891, 95890, 95889, 95888, 95887, 95886, 95885, 95884]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5547/9716 [4:54:49<3:41:34, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171341 20 94299 77042 [95920, 95919, 95918, 95917, 95916, 95915, 95914, 95913, 95912, 95911, 95910, 95909, 95908, 95907, 95906, 95905, 95904, 95903, 95902, 95901]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5548/9716 [4:54:51<3:41:31, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171341 20 94316 77025 [95937, 95936, 95935, 95934, 95933, 95932, 95931, 95930, 95929, 95928, 95927, 95926, 95925, 95924, 95923, 95922, 95921, 95920, 95919, 95918]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5549/9716 [4:54:54<3:41:27, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171342 20 94333 77008 [95954, 95953, 95952, 95951, 95950, 95949, 95948, 95947, 95946, 95945, 95944, 95943, 95942, 95941, 95940, 95939, 95938, 95937, 95936, 95935]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5550/9716 [4:54:56<3:41:23, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171342 20 94350 76992 [95971, 95970, 95969, 95968, 95967, 95966, 95965, 95964, 95963, 95962, 95961, 95960, 95959, 95958, 95957, 95956, 95955, 95954, 95953, 95952]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5551/9716 [4:54:58<3:41:19, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171342 20 94367 76975 [95988, 95987, 95986, 95985, 95984, 95983, 95982, 95981, 95980, 95979, 95978, 95977, 95976, 95975, 95974, 95973, 95972, 95971, 95970, 95969]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5552/9716 [4:55:01<3:41:15, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171342 20 94384 76958 [96005, 96004, 96003, 96002, 96001, 96000, 95999, 95998, 95997, 95996, 95995, 95994, 95993, 95992, 95991, 95990, 95989, 95988, 95987, 95986]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5553/9716 [4:55:03<3:41:12, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171342 20 94401 76941 [96022, 96021, 96020, 96019, 96018, 96017, 96016, 96015, 96014, 96013, 96012, 96011, 96010, 96009, 96008, 96007, 96006, 96005, 96004, 96003]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5554/9716 [4:55:06<3:41:08, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171342 20 94418 76924 [96039, 96038, 96037, 96036, 96035, 96034, 96033, 96032, 96031, 96030, 96029, 96028, 96027, 96026, 96025, 96024, 96023, 96022, 96021, 96020]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5555/9716 [4:55:08<3:41:04, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171342 20 94435 76907 [96056, 96055, 96054, 96053, 96052, 96051, 96050, 96049, 96048, 96047, 96046, 96045, 96044, 96043, 96042, 96041, 96040, 96039, 96038, 96037]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5556/9716 [4:55:11<3:41:01, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171342 20 94452 76890 [96073, 96072, 96071, 96070, 96069, 96068, 96067, 96066, 96065, 96064, 96063, 96062, 96061, 96060, 96059, 96058, 96057, 96056, 96055, 96054]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5557/9716 [4:55:12<3:40:56, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76873 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5558/9716 [4:55:12<3:40:51, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76856 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5559/9716 [4:55:13<3:40:45, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76839 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5560/9716 [4:55:13<3:40:40, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76822 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5561/9716 [4:55:14<3:40:35, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76805 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5562/9716 [4:55:15<3:40:30, 3.19s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76788 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5563/9716 [4:55:15<3:40:25, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76771 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5564/9716 [4:55:16<3:40:20, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76754 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5565/9716 [4:55:16<3:40:15, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76737 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5566/9716 [4:55:17<3:40:10, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76720 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5567/9716 [4:55:18<3:40:05, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76703 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5568/9716 [4:55:18<3:39:59, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76686 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5569/9716 [4:55:19<3:39:54, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76669 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5570/9716 [4:55:20<3:39:49, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76652 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5571/9716 [4:55:20<3:39:44, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76635 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5572/9716 [4:55:21<3:39:39, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76618 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5573/9716 [4:55:21<3:39:34, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76601 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5574/9716 [4:55:24<3:39:30, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171356 20 94758 76584 [96393, 96392, 96391, 96390, 96389, 96388, 96387, 96386, 96385, 96384, 96383, 96382, 96381, 96380, 96379, 96378, 96377, 96376, 96375, 96374]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5575/9716 [4:55:26<3:39:27, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171356 20 94775 76581 [96396, 96395, 96394, 96393, 96392, 96391, 96390, 96389, 96388, 96387, 96386, 96385, 96384, 96383, 96382, 96381, 96380, 96379, 96378, 96377]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5576/9716 [4:55:29<3:39:23, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171356 20 94792 76564 [96413, 96412, 96411, 96410, 96409, 96408, 96407, 96406, 96405, 96404, 96403, 96402, 96401, 96400, 96399, 96398, 96397, 96396, 96395, 96394]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5577/9716 [4:55:31<3:39:19, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171356 20 94809 76547 [96430, 96429, 96428, 96427, 96426, 96425, 96424, 96423, 96422, 96421, 96420, 96419, 96418, 96417, 96416, 96415, 96414, 96413, 96412, 96411]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5578/9716 [4:55:34<3:39:15, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171356 20 94826 76530 [96447, 96446, 96445, 96444, 96443, 96442, 96441, 96440, 96439, 96438, 96437, 96436, 96435, 96434, 96433, 96432, 96431, 96430, 96429, 96428]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5579/9716 [4:55:36<3:39:12, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 94843 76513 [96464, 96463, 96462, 96461, 96460, 96459, 96458, 96457, 96456, 96455, 96454, 96453, 96452, 96451, 96450, 96449, 96448, 96447, 96446, 96445]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5580/9716 [4:55:38<3:39:08, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 94860 76498 [96481, 96480, 96479, 96478, 96477, 96476, 96475, 96474, 96473, 96472, 96471, 96470, 96469, 96468, 96467, 96466, 96465, 96464, 96463, 96462]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5581/9716 [4:55:41<3:39:04, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 94877 76481 [96498, 96497, 96496, 96495, 96494, 96493, 96492, 96491, 96490, 96489, 96488, 96487, 96486, 96485, 96484, 96483, 96482, 96481, 96480, 96479]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5582/9716 [4:55:43<3:39:00, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 94894 76464 [96515, 96514, 96513, 96512, 96511, 96510, 96509, 96508, 96507, 96506, 96505, 96504, 96503, 96502, 96501, 96500, 96499, 96498, 96497, 96496]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5583/9716 [4:55:46<3:38:57, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 94911 76447 [96532, 96531, 96530, 96529, 96528, 96527, 96526, 96525, 96524, 96523, 96522, 96521, 96520, 96519, 96518, 96517, 96516, 96515, 96514, 96513]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5584/9716 [4:55:48<3:38:53, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 94928 76430 [96549, 96548, 96547, 96546, 96545, 96544, 96543, 96542, 96541, 96540, 96539, 96538, 96537, 96536, 96535, 96534, 96533, 96532, 96531, 96530]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5585/9716 [4:55:51<3:38:49, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 94945 76413 [96566, 96565, 96564, 96563, 96562, 96561, 96560, 96559, 96558, 96557, 96556, 96555, 96554, 96553, 96552, 96551, 96550, 96549, 96548, 96547]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 57%|█████▋ | 5586/9716 [4:55:53<3:38:46, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 94962 76396 [96583, 96582, 96581, 96580, 96579, 96578, 96577, 96576, 96575, 96574, 96573, 96572, 96571, 96570, 96569, 96568, 96567, 96566, 96565, 96564]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5587/9716 [4:55:55<3:38:42, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 94979 76379 [96600, 96599, 96598, 96597, 96596, 96595, 96594, 96593, 96592, 96591, 96590, 96589, 96588, 96587, 96586, 96585, 96584, 96583, 96582, 96581]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5588/9716 [4:55:58<3:38:38, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 94996 76362 [96617, 96616, 96615, 96614, 96613, 96612, 96611, 96610, 96609, 96608, 96607, 96606, 96605, 96604, 96603, 96602, 96601, 96600, 96599, 96598]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5589/9716 [4:56:00<3:38:34, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 95013 76345 [96634, 96633, 96632, 96631, 96630, 96629, 96628, 96627, 96626, 96625, 96624, 96623, 96622, 96621, 96620, 96619, 96618, 96617, 96616, 96615]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5590/9716 [4:56:02<3:38:30, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 95030 76328 [96651, 96650, 96649, 96648, 96647, 96646, 96645, 96644, 96643, 96642, 96641, 96640, 96639, 96638, 96637, 96636, 96635, 96634, 96633, 96632]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5591/9716 [4:56:04<3:38:26, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 95047 76311 [96668, 96667, 96666, 96665, 96664, 96663, 96662, 96661, 96660, 96659, 96658, 96657, 96656, 96655, 96654, 96653, 96652, 96651, 96650, 96649]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5592/9716 [4:56:07<3:38:22, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 95064 76294 [96685, 96684, 96683, 96682, 96681, 96680, 96679, 96678, 96677, 96676, 96675, 96674, 96673, 96672, 96671, 96670, 96669, 96668, 96667, 96666]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5593/9716 [4:56:09<3:38:19, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "171358 20 95081 76277 [96702, 96701, 96700, 96699, 96698, 96697, 96696, 96695, 96694, 96693, 96692, 96691, 96690, 96689, 96688, 96687, 96686, 96685, 96684, 96683]\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5594/9716 [4:56:10<3:38:14, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76260 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5595/9716 [4:56:10<3:38:08, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76243 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5596/9716 [4:56:11<3:38:03, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76226 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5597/9716 [4:56:11<3:37:58, 3.18s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76209 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5598/9716 [4:56:12<3:37:53, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76192 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5599/9716 [4:56:13<3:37:48, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76175 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5600/9716 [4:56:13<3:37:43, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76158 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5601/9716 [4:56:14<3:37:38, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76141 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5602/9716 [4:56:14<3:37:33, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76124 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5603/9716 [4:56:15<3:37:28, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76107 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5604/9716 [4:56:16<3:37:23, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76090 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5605/9716 [4:56:16<3:37:18, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76073 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5606/9716 [4:56:17<3:37:13, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76056 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5607/9716 [4:56:17<3:37:08, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76039 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5608/9716 [4:56:18<3:37:03, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76022 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5609/9716 [4:56:19<3:36:58, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 76005 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5610/9716 [4:56:19<3:36:53, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 75988 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5611/9716 [4:56:20<3:36:48, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 75971 Expecting value: line 1 column 1 (char 0)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\r", + " 58%|█████▊ | 5612/9716 [4:56:20<3:36:43, 3.17s/it]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "error 75954 Expecting value: line 1 column 1 (char 0)\n" + ] } ], "source": [