diff --git a/download_resources.ipynb b/download_resources.ipynb new file mode 100644 index 0000000..abf8096 --- /dev/null +++ b/download_resources.ipynb @@ -0,0 +1,64 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import download_utils" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Week 6 resources" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "code_folding": [] + }, + "outputs": [], + "source": [ + "download_utils.parallel_downloader(\n", + " \"v0.1\",\n", + " [\n", + " \"captions_train-val2014.zip\",\n", + " \"train2014_sample.zip\",\n", + " \"train_img_embeds.pickle\",\n", + " \"train_img_fns.pickle\",\n", + " \"val2014_sample.zip\",\n", + " \"val_img_embeds.pickle\",\n", + " \"val_img_fns.pickle\"\n", + " ],\n", + " \"readonly/week6\"\n", + ")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "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.5.2" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}