Merge pull request #1 from M21han/patch-1

Update Week 2 Programming Assignment.ipynb
This commit is contained in:
Priyatham Sai Chand 2021-08-09 06:14:41 +05:30 committed by GitHub
commit d6176cbc18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -179,14 +179,14 @@
" The seed argument should be passed to the flow_from_directory method.\n",
" \n",
" \"\"\"\n",
" # I couldn't get this one right. If you get it let me know So, I can recitfy.\n",
"
" image_data_gen = image_data_generator.flow_from_directory(\n",
" directory = directory,\n",
" classes=['classroom','conference_room','church_outdoor'],\n",
" batch_size = 20,\n",
" target_size = (64,64),\n",
" \n",
" seed=seed,\n",
" class_mode = \"categorical\"\n",
" \n",
" )\n",
" return image_data_gen\n",
" "