Created
January 14, 2019 20:26
-
-
Save bfarzin/4d380edbb4ba8692e74559043d845e11 to your computer and use it in GitHub Desktop.
Test Speed by Version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "code", | |
"execution_count": 1, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"%reload_ext autoreload\n", | |
"%autoreload 2" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 2, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"'1.0.40.dev0'" | |
] | |
}, | |
"execution_count": 2, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"import fastai\n", | |
"fastai.__version__" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 3, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"import os\n", | |
"os.environ[\"CUDA_VISIBLE_DEVICES\"]=\"0\"" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 4, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"300000\n" | |
] | |
} | |
], | |
"source": [ | |
"from fastai import *\n", | |
"from fastai.text import *\n", | |
"\n", | |
"imdb = untar_data(URLs.IMDB_SAMPLE)\n", | |
"df = pd.read_csv(imdb/'texts.csv')\n", | |
"replicated_data = pd.concat([df.copy() for _ in range(300)])\n", | |
"print(len(replicated_data))" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"data_lm = TextLMDataBunch.from_df('./',replicated_data,df)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"SequentialRNN(\n", | |
" (0): RNNCore(\n", | |
" (encoder): Embedding(19159, 400, padding_idx=1)\n", | |
" (encoder_dp): EmbeddingDropout(\n", | |
" (emb): Embedding(19159, 400, padding_idx=1)\n", | |
" )\n", | |
" (rnns): ModuleList(\n", | |
" (0): QRNNLayer(\n", | |
" (linear): WeightDropout(\n", | |
" (module): Linear(in_features=800, out_features=3333, bias=True)\n", | |
" )\n", | |
" )\n", | |
" (1): QRNNLayer(\n", | |
" (linear): WeightDropout(\n", | |
" (module): Linear(in_features=1111, out_features=1200, bias=True)\n", | |
" )\n", | |
" )\n", | |
" )\n", | |
" (input_dp): RNNDropout()\n", | |
" (hidden_dps): ModuleList(\n", | |
" (0): RNNDropout()\n", | |
" (1): RNNDropout()\n", | |
" )\n", | |
" )\n", | |
" (1): LinearDecoder(\n", | |
" (decoder): Linear(in_features=400, out_features=19159, bias=True)\n", | |
" (output_dp): RNNDropout()\n", | |
" )\n", | |
")" | |
] | |
}, | |
"execution_count": 6, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"bptt = 100\n", | |
"emb_sz,nh,nl = 400,1111,2\n", | |
"\n", | |
"learn = language_model_learner(data_lm,bptt,emb_sz,nh,nl,drop_mult=0.5,qrnn=True)\n", | |
"learn.unfreeze()\n", | |
"learn.model" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"\n", | |
" <div>\n", | |
" <style>\n", | |
" /* Turns off some styling */\n", | |
" progress {\n", | |
" /* gets rid of default border in Firefox and Opera. */\n", | |
" border: none;\n", | |
" /* Needs to be in here for Safari polyfill so background images work as expected. */\n", | |
" background-size: auto;\n", | |
" }\n", | |
" .progress-bar-interrupted, .progress-bar-interrupted::-webkit-progress-bar {\n", | |
" background: #F44336;\n", | |
" }\n", | |
" </style>\n", | |
" <progress value='0' class='' max='1', style='width:300px; height:20px; vertical-align: middle;'></progress>\n", | |
" 0.00% [0/1 00:00<00:00]\n", | |
" </div>\n", | |
" \n", | |
"<table style='width:300px; margin-bottom:10px'>\n", | |
" <tr>\n", | |
" <th>epoch</th>\n", | |
" <th>train_loss</th>\n", | |
" <th>valid_loss</th>\n", | |
" <th>accuracy</th>\n", | |
" </tr>\n", | |
"</table>\n", | |
"\n", | |
"\n", | |
" <div>\n", | |
" <style>\n", | |
" /* Turns off some styling */\n", | |
" progress {\n", | |
" /* gets rid of default border in Firefox and Opera. */\n", | |
" border: none;\n", | |
" /* Needs to be in here for Safari polyfill so background images work as expected. */\n", | |
" background-size: auto;\n", | |
" }\n", | |
" .progress-bar-interrupted, .progress-bar-interrupted::-webkit-progress-bar {\n", | |
" background: #F44336;\n", | |
" }\n", | |
" </style>\n", | |
" <progress value='2973' class='' max='21408', style='width:300px; height:20px; vertical-align: middle;'></progress>\n", | |
" 13.89% [2973/21408 07:19<45:24 3.1202]\n", | |
" </div>\n", | |
" " | |
], | |
"text/plain": [ | |
"<IPython.core.display.HTML object>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"learn.fit_one_cycle(1, 3.e-2, moms=(0.9,0.8), wd=0.01, pct_start=0.25)\n", | |
"learn.recorder.plot_losses()" | |
] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": "Python 3.7 fasta.ai1 DEV", | |
"language": "python", | |
"name": "fastai1_dev" | |
}, | |
"language_info": { | |
"codemirror_mode": { | |
"name": "ipython", | |
"version": 3 | |
}, | |
"file_extension": ".py", | |
"mimetype": "text/x-python", | |
"name": "python", | |
"nbconvert_exporter": "python", | |
"pygments_lexer": "ipython3", | |
"version": "3.7.1" | |
}, | |
"varInspector": { | |
"cols": { | |
"lenName": 16, | |
"lenType": 16, | |
"lenVar": 40 | |
}, | |
"kernels_config": { | |
"python": { | |
"delete_cmd_postfix": "", | |
"delete_cmd_prefix": "del ", | |
"library": "var_list.py", | |
"varRefreshCmd": "print(var_dic_list())" | |
}, | |
"r": { | |
"delete_cmd_postfix": ") ", | |
"delete_cmd_prefix": "rm(", | |
"library": "var_list.r", | |
"varRefreshCmd": "cat(var_dic_list()) " | |
} | |
}, | |
"types_to_exclude": [ | |
"module", | |
"function", | |
"builtin_function_or_method", | |
"instance", | |
"_Feature" | |
], | |
"window_display": false | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 2 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment