Readme updates and link to pkl files based on great community feedback

This commit is contained in:
Edward Donner
2024-10-15 16:56:46 -04:00
parent 3fa38267a4
commit 11b0a64542
2 changed files with 18 additions and 3 deletions

View File

@@ -133,6 +133,21 @@
"%matplotlib inline"
]
},
{
"cell_type": "markdown",
"id": "5105e13c-bca0-4c70-bfaa-649345f53322",
"metadata": {},
"source": [
"# Loading the pkl files\n",
"\n",
"Let's avoid curating all our data again! Load in the pickle files\n",
"\n",
"If you didn't already create these in Day 2, you can also download them from my google drive (you'll also find the slides here): \n",
"https://drive.google.com/drive/folders/1JwNorpRHdnf_pU0GE5yYtfKlyrKC3CoV?usp=sharing\n",
"\n",
"But note that the files are quite large - you might need to get a coffee!"
]
},
{
"cell_type": "code",
"execution_count": null,
@@ -140,7 +155,7 @@
"metadata": {},
"outputs": [],
"source": [
"# Let's avoid curating all our data again! Load in the pickle files:\n",
"\n",
"\n",
"with open('train.pkl', 'rb') as file:\n",
" train = pickle.load(file)\n",