Update 01_the_machine_learning_landscape.ipynb

updated import urllib.request 
to make urllib.request.urlretrieve(url, datapath + filename) work properly
main
AndC314 2020-09-09 09:45:13 +02:00 committed by GitHub
parent 1e81324573
commit c4c4f1bac9
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@
"outputs": [],
"source": [
"# Download the data\n",
"import urllib\n",
"import urllib.request\n",
"DOWNLOAD_ROOT = \"https://raw.githubusercontent.com/ageron/handson-ml2/master/\"\n",
"os.makedirs(datapath, exist_ok=True)\n",
"for filename in (\"oecd_bli_2015.csv\", \"gdp_per_capita.csv\"):\n",