diff --git a/notebooks/Block 5/GoogleImageExtractor.py b/notebooks/Block 5/GoogleImageExtractor.py new file mode 100644 index 0000000000000000000000000000000000000000..6df9966a27a914d2712c1a425809bdd2401d8fe4 --- /dev/null +++ b/notebooks/Block 5/GoogleImageExtractor.py @@ -0,0 +1,205 @@ +""" Google image Extractor based on Selenium. +taken from: +https://simply-python.com/2015/05/18/saving-images-from-google-search-using-selenium-and-python/ +See also: +https://github.com/scirag/selenium-image-crawler +""" +import re, os, sys, datetime, time +import pandas +from selenium import webdriver +from contextlib import closing +from selenium.webdriver import Firefox +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.common.by import By +from selenium.webdriver.support import expected_conditions as EC + +from pattern.web import URL, extension, cache, plaintext, Newsfeed, DOM + +class GoogleImageExtractor(object): + + def __init__(self, search_key = '' ): + """ Google image search class + Args: + search_key to be entered. + + """ + if type(search_key) == str: + ## convert to list even for one search keyword to standalize the pulling. + self.g_search_key_list = [search_key] + elif type(search_key) == list: + self.g_search_key_list = search_key + else: + print('google_search_keyword not of type str or list') + raise + + self.g_search_key = '' + + ## user options + self.image_dl_per_search = 200 + + ## url construct string text + self.prefix_of_search_url = "https://www.google.com.sg/search?q=" + self.postfix_of_search_url = '&source=lnms&tbm=isch&sa=X&ei=0eZEVbj3IJG5uATalICQAQ&ved=0CAcQ_AUoAQ&biw=939&bih=591'# non changable text + self.target_url_str = '' + + ## storage + self.pic_url_list = [] + self.pic_info_list = [] + + ## file and folder path + self.folder_main_dir_prefix = r'C:\data\temp\gimage_pic' + + def reformat_search_for_spaces(self): + """ + Method call immediately at the initialization stages + get rid of the spaces and replace by the "+" + Use in search term. Eg: "Cookie fast" to "Cookie+fast" + + steps: + strip any lagging spaces if present + replace the self.g_search_key + """ + self.g_search_key = self.g_search_key.rstrip().replace(' ', '+') + + def set_num_image_to_dl(self, num_image): + """ Set the number of image to download. Set to self.image_dl_per_search. + Args: + num_image (int): num of image to download. + """ + self.image_dl_per_search = num_image + + def get_searchlist_fr_file(self, filename): + """Get search list from filename. Ability to add in a lot of phrases. + Will replace the self.g_search_key_list + Args: + filename (str): full file path + """ + with open(filename,'r') as f: + self.g_search_key_list = f.readlines() + + def formed_search_url(self): + ''' Form the url either one selected key phrases or multiple search items. + Get the url from the self.g_search_key_list + Set to self.sp_search_url_list + ''' + self.reformat_search_for_spaces() + self.target_url_str = self.prefix_of_search_url + self.g_search_key +\ + self.postfix_of_search_url + + def retrieve_source_fr_html(self): + """ Make use of selenium. Retrieve from html table using pandas table. + + """ + driver = webdriver.Firefox() + driver.get(self.target_url_str) + + ## wait for log in then get the page source. + try: + driver.execute_script("window.scrollTo(0, 30000)") + time.sleep(2) + self.temp_page_source = driver.page_source + #driver.find_element_by_css_selector('ksb _kvc').click()#cant find the class + driver.find_element_by_id('smb').click() #ok + time.sleep(2) + driver.execute_script("window.scrollTo(0, 60000)") + time.sleep(2) + driver.execute_script("window.scrollTo(0, 60000)") + + except: + print('not able to find') + driver.quit() + + self.page_source = driver.page_source + + driver.close() + + def extract_pic_url(self): + """ extract all the raw pic url in list + + """ + dom = DOM(self.page_source) + tag_list = dom('a.rg_l') + + for tag in tag_list[:self.image_dl_per_search]: + tar_str = re.search('imgurl=(.*)&imgrefurl', tag.attributes['href']) + try: + self.pic_url_list.append(tar_str.group(1)) + except: + print('error parsing', tag) + + def multi_search_download(self): + """ Mutli search download""" + for indiv_search in self.g_search_key_list: + self.pic_url_list = [] + self.pic_info_list = [] + + self.g_search_key = indiv_search + + self.formed_search_url() + self.retrieve_source_fr_html() + self.extract_pic_url() + self.downloading_all_photos() #some download might not be jpg?? use selnium to download?? + self.save_infolist_to_file() + + def downloading_all_photos(self): + """ download all photos to particular folder + + """ + self.create_folder() + pic_counter = 1 + for url_link in self.pic_url_list: + print(pic_counter) + pic_prefix_str = self.g_search_key + str(pic_counter) + self.download_single_image(url_link.encode(), pic_prefix_str) + pic_counter = pic_counter +1 + + def download_single_image(self, url_link, pic_prefix_str): + """ Download data according to the url link given. + Args: + url_link (str): url str. + pic_prefix_str (str): pic_prefix_str for unique label the pic + """ + self.download_fault = 0 + file_ext = os.path.splitext(url_link)[1] #use for checking valid pic ext + temp_filename = pic_prefix_str + file_ext + temp_filename_full_path = os.path.join(self.gs_raw_dirpath, temp_filename ) + + valid_image_ext_list = ['.png','.jpg','.jpeg', '.gif', '.bmp', '.tiff'] #not comprehensive + + url = URL(url_link) + if url.redirect: + return # if there is re-direct, return + + if file_ext not in valid_image_ext_list: + return #return if not valid image extension + + f = open(temp_filename_full_path, 'wb') # save as test.gif + print(url_link) + self.pic_info_list.append(pic_prefix_str + ': ' + url_link ) + try: + f.write(url.download())#if have problem skip + except: + #if self.__print_download_fault: + print('Problem with processing this data: ', url_link) + self.download_fault =1 + f.close() + + def create_folder(self): + """ + Create a folder to put the log data segregate by date + + """ + self.gs_raw_dirpath = os.path.join(self.folder_main_dir_prefix, time.strftime("_%d_%b%y", time.localtime())) + if not os.path.exists(self.gs_raw_dirpath): + os.makedirs(self.gs_raw_dirpath) + + def save_infolist_to_file(self): + """ Save the info list to file. + + """ + temp_filename_full_path = os.path.join(self.gs_raw_dirpath, self.g_search_key + '_info.txt' ) + + with open(temp_filename_full_path, 'w') as f: + for n in self.pic_info_list: + f.write(n) + f.write('\n') \ No newline at end of file diff --git a/notebooks/Block 5/Selenium_test.ipynb b/notebooks/Block 5/Selenium_test.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..73bbe2364fa9d0ecf19ef650ff7be0bd70688c47 --- /dev/null +++ b/notebooks/Block 5/Selenium_test.ipynb @@ -0,0 +1,55 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "ename": "ModuleNotFoundError", + "evalue": "No module named 'selenium'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m<ipython-input-4-0cfc1ae18607>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mfrom\u001b[0m \u001b[0mGoogleImageExtractor\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mGoogleImageExtractor\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0;34m\"\"\"test the downloading of files\"\"\"\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0mqueries\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m\"brad pitt, johnny depp, leonardo dicaprio, robert de niro, angelina jolie, sandra bullock, catherine deneuve, marion cotillard\"\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0mw\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mGoogleImageExtractor\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mqueries\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;31m#leave blanks if get the search list from file\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m/work/hslu-deep-learning/notebooks/Block 5/GoogleImageExtractor.py\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mre\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mos\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msys\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdatetime\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtime\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mpandas\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 9\u001b[0;31m \u001b[0;32mfrom\u001b[0m \u001b[0mselenium\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mwebdriver\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 10\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0mcontextlib\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mclosing\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 11\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0mselenium\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mwebdriver\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mFirefox\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'selenium'" + ] + } + ], + "source": [ + "from GoogleImageExtractor import GoogleImageExtractor\n", + "\"\"\"test the downloading of files\"\"\"\n", + "queries = \"brad pitt, johnny depp, leonardo dicaprio, robert de niro, angelina jolie, sandra bullock, catherine deneuve, marion cotillard\"\n", + "\n", + "w = GoogleImageExtractor(queries)#leave blanks if get the search list from file\n", + "\n", + "w.set_num_image_to_dl(200)\n", + "w.get_searchlist_fr_file(searchlist_filename)#replace the searclist\n", + "w.multi_search_download()" + ] + } + ], + "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.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/notebooks/Block 5/tensorboard/cnn_face_1/train/events.out.tfevents.1607684123.jupyter-simon-2evanhemerthslu-2ddeep-2dlearning-2d66daea14.128.315.v2 b/notebooks/Block 5/tensorboard/cnn_face_1/train/events.out.tfevents.1607684123.jupyter-simon-2evanhemerthslu-2ddeep-2dlearning-2d66daea14.128.315.v2 new file mode 100644 index 0000000000000000000000000000000000000000..53830319d1982407463a8536cdc3f298549f9d9b Binary files /dev/null and b/notebooks/Block 5/tensorboard/cnn_face_1/train/events.out.tfevents.1607684123.jupyter-simon-2evanhemerthslu-2ddeep-2dlearning-2d66daea14.128.315.v2 differ diff --git a/notebooks/Block 5/tensorboard/cnn_face_1/train/events.out.tfevents.1607684160.jupyter-simon-2evanhemerthslu-2ddeep-2dlearning-2d66daea14.128.1323.v2 b/notebooks/Block 5/tensorboard/cnn_face_1/train/events.out.tfevents.1607684160.jupyter-simon-2evanhemerthslu-2ddeep-2dlearning-2d66daea14.128.1323.v2 new file mode 100644 index 0000000000000000000000000000000000000000..2b2c84036f9585327d6d183b9c02aaed34ca9534 Binary files /dev/null and b/notebooks/Block 5/tensorboard/cnn_face_1/train/events.out.tfevents.1607684160.jupyter-simon-2evanhemerthslu-2ddeep-2dlearning-2d66daea14.128.1323.v2 differ diff --git a/notebooks/Block 5/tensorboard/cnn_face_1/train/plugins/profile/2020-12-11_10-55-25/local.trace b/notebooks/Block 5/tensorboard/cnn_face_1/train/plugins/profile/2020-12-11_10-55-25/local.trace new file mode 100644 index 0000000000000000000000000000000000000000..06feec021b6b4da57cf1089a730388baa9443d6a Binary files /dev/null and b/notebooks/Block 5/tensorboard/cnn_face_1/train/plugins/profile/2020-12-11_10-55-25/local.trace differ diff --git a/notebooks/Block 5/tensorboard/cnn_face_1/train/plugins/profile/2020-12-11_10-56-02/local.trace b/notebooks/Block 5/tensorboard/cnn_face_1/train/plugins/profile/2020-12-11_10-56-02/local.trace new file mode 100644 index 0000000000000000000000000000000000000000..4915761d5b9cb9c349724bbcc6f965940342fa0f Binary files /dev/null and b/notebooks/Block 5/tensorboard/cnn_face_1/train/plugins/profile/2020-12-11_10-56-02/local.trace differ diff --git a/notebooks/Block 5/tensorboard/cnn_face_1/validation/events.out.tfevents.1607684174.jupyter-simon-2evanhemerthslu-2ddeep-2dlearning-2d66daea14.128.1698.v2 b/notebooks/Block 5/tensorboard/cnn_face_1/validation/events.out.tfevents.1607684174.jupyter-simon-2evanhemerthslu-2ddeep-2dlearning-2d66daea14.128.1698.v2 new file mode 100644 index 0000000000000000000000000000000000000000..4f341c7f121b2fff74ff3a9ffa4b99f2c49d8091 Binary files /dev/null and b/notebooks/Block 5/tensorboard/cnn_face_1/validation/events.out.tfevents.1607684174.jupyter-simon-2evanhemerthslu-2ddeep-2dlearning-2d66daea14.128.1698.v2 differ diff --git a/notebooks/Block 5/train/johnny depp/1. 416x416.jpg b/notebooks/Block 5/train/johnny depp/1. 416x416.jpg new file mode 100755 index 0000000000000000000000000000000000000000..f4d3683baf4175a04031a1f24a665ab36e1ae388 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/1. 416x416.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/10. johnny-depp.jpg b/notebooks/Block 5/train/johnny depp/10. johnny-depp.jpg new file mode 100755 index 0000000000000000000000000000000000000000..e699ee3af0dc66b68926098f9de97891317b8884 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/10. johnny-depp.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/11. johnny-depp-5186.jpg b/notebooks/Block 5/train/johnny depp/11. johnny-depp-5186.jpg new file mode 100755 index 0000000000000000000000000000000000000000..9aa9ef51d046638deddf59804de6e8c9d18353bb Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/11. johnny-depp-5186.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/12. 3169d946036bd0081b3dbf9e4e889921---jump-street-johnny-depp.jpg b/notebooks/Block 5/train/johnny depp/12. 3169d946036bd0081b3dbf9e4e889921---jump-street-johnny-depp.jpg new file mode 100755 index 0000000000000000000000000000000000000000..90edaa4d342c3f6ae4f3fb2283f27368d13868d2 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/12. 3169d946036bd0081b3dbf9e4e889921---jump-street-johnny-depp.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/13. johnny-depp-glasses-round.jpg b/notebooks/Block 5/train/johnny depp/13. johnny-depp-glasses-round.jpg new file mode 100755 index 0000000000000000000000000000000000000000..e02f90287bcb2f9ff564f051be836747402d9c52 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/13. johnny-depp-glasses-round.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/14. johnny-depp.jpg b/notebooks/Block 5/train/johnny depp/14. johnny-depp.jpg new file mode 100755 index 0000000000000000000000000000000000000000..e80e99be4d0062f1b3675f40b85313f38a53cff7 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/14. johnny-depp.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/15. johnny-depp-traegt-eine-schiebermuetze-und-schaut-angespannt.jpg b/notebooks/Block 5/train/johnny depp/15. johnny-depp-traegt-eine-schiebermuetze-und-schaut-angespannt.jpg new file mode 100755 index 0000000000000000000000000000000000000000..f6b12f1a18d128ce7173952ff7f9287ada92abc8 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/15. johnny-depp-traegt-eine-schiebermuetze-und-schaut-angespannt.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/16. johnny_depp.jpg b/notebooks/Block 5/train/johnny depp/16. johnny_depp.jpg new file mode 100755 index 0000000000000000000000000000000000000000..b08abb905c3c4d8a25f47628c29965620324f5a4 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/16. johnny_depp.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/17. 349b93899916ebfa19e17a05726490bb_400x400.jpeg b/notebooks/Block 5/train/johnny depp/17. 349b93899916ebfa19e17a05726490bb_400x400.jpeg new file mode 100755 index 0000000000000000000000000000000000000000..8ca9a1a464273f9f411c5fe56701c30e37828226 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/17. 349b93899916ebfa19e17a05726490bb_400x400.jpeg differ diff --git a/notebooks/Block 5/train/johnny depp/18. mv5botaznty1njywml5bml5banbnxkftztgwntiwnjmzmji@._cr723,84,642,642_ux402_uy402._sy201_sx201_al_.jpg b/notebooks/Block 5/train/johnny depp/18. mv5botaznty1njywml5bml5banbnxkftztgwntiwnjmzmji@._cr723,84,642,642_ux402_uy402._sy201_sx201_al_.jpg new file mode 100755 index 0000000000000000000000000000000000000000..cf25fcbb58bca6c84a65e3083a521a6312a7912a Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/18. mv5botaznty1njywml5bml5banbnxkftztgwntiwnjmzmji@._cr723,84,642,642_ux402_uy402._sy201_sx201_al_.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/19. 18-johnny-depp.w700.h700.jpg b/notebooks/Block 5/train/johnny depp/19. 18-johnny-depp.w700.h700.jpg new file mode 100755 index 0000000000000000000000000000000000000000..213df83d7e79a02ac856994f9cb3e04da9b4a27d Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/19. 18-johnny-depp.w700.h700.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/2. 20-johnny-depp.w330.h330.jpg b/notebooks/Block 5/train/johnny depp/2. 20-johnny-depp.w330.h330.jpg new file mode 100755 index 0000000000000000000000000000000000000000..05e17601dc03a0779500eded9f4923ea5a2f528a Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/2. 20-johnny-depp.w330.h330.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/20. johnny-depp.jpg b/notebooks/Block 5/train/johnny depp/20. johnny-depp.jpg new file mode 100755 index 0000000000000000000000000000000000000000..ba2e8a34b8cfdcc922c1f8097341b52a8d8fc55e Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/20. johnny-depp.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/22. johnny-depp-ge--6389479-.jpg b/notebooks/Block 5/train/johnny depp/22. johnny-depp-ge--6389479-.jpg new file mode 100755 index 0000000000000000000000000000000000000000..9ee7b9463f92ca2ed3500020b6df78da1bdbc02e Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/22. johnny-depp-ge--6389479-.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/23. mv5bnmy2mdgzzjityzi5mi00nge2ltg4zmutmmm1zgizm2q0njm5xkeyxkfqcgdeqxvyntayndq2nji@._cr0,170,1476,1476_ux402_uy402._sy201_sx201_al_.jpg b/notebooks/Block 5/train/johnny depp/23. mv5bnmy2mdgzzjityzi5mi00nge2ltg4zmutmmm1zgizm2q0njm5xkeyxkfqcgdeqxvyntayndq2nji@._cr0,170,1476,1476_ux402_uy402._sy201_sx201_al_.jpg new file mode 100755 index 0000000000000000000000000000000000000000..62995a4a35c4fbfff7376a35aa826d37af1241dd Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/23. mv5bnmy2mdgzzjityzi5mi00nge2ltg4zmutmmm1zgizm2q0njm5xkeyxkfqcgdeqxvyntayndq2nji@._cr0,170,1476,1476_ux402_uy402._sy201_sx201_al_.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/24. johnny-depp-.w700.h700.jpg b/notebooks/Block 5/train/johnny depp/24. johnny-depp-.w700.h700.jpg new file mode 100755 index 0000000000000000000000000000000000000000..0152e14d1b0a4f21ec75545d2b419de7e449e42c Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/24. johnny-depp-.w700.h700.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/25. 3_big.jpg b/notebooks/Block 5/train/johnny depp/25. 3_big.jpg new file mode 100755 index 0000000000000000000000000000000000000000..47e3f839ea39e364751b71432261ccfa46c0c2c7 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/25. 3_big.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/26. 08--schauspieler-beendet-gerichtsstreit-mit-ex-bodyguards---1-1---spoton-article-713350.jpg b/notebooks/Block 5/train/johnny depp/26. 08--schauspieler-beendet-gerichtsstreit-mit-ex-bodyguards---1-1---spoton-article-713350.jpg new file mode 100755 index 0000000000000000000000000000000000000000..858cc73ed02cbeb5da12e8157de3f6cca5eff96a Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/26. 08--schauspieler-beendet-gerichtsstreit-mit-ex-bodyguards---1-1---spoton-article-713350.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/27. johnny-depp-medium-hairstyle-1.jpeg b/notebooks/Block 5/train/johnny depp/27. johnny-depp-medium-hairstyle-1.jpeg new file mode 100755 index 0000000000000000000000000000000000000000..e5c2851c59c4b8b0e07bc38b68d2e3bf9986d4ce Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/27. johnny-depp-medium-hairstyle-1.jpeg differ diff --git a/notebooks/Block 5/train/johnny depp/28. johnny-depp-2.png b/notebooks/Block 5/train/johnny depp/28. johnny-depp-2.png new file mode 100755 index 0000000000000000000000000000000000000000..7ded8320117d3a4a5d7af5a1240841824420afe4 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/28. johnny-depp-2.png differ diff --git a/notebooks/Block 5/train/johnny depp/29. 2cthsqrt_400x400.jpg b/notebooks/Block 5/train/johnny depp/29. 2cthsqrt_400x400.jpg new file mode 100755 index 0000000000000000000000000000000000000000..a9195902e4ff25913a03acafb06abe7940e05767 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/29. 2cthsqrt_400x400.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/3. johnny-depp-9542522-1-402.jpg b/notebooks/Block 5/train/johnny depp/3. johnny-depp-9542522-1-402.jpg new file mode 100755 index 0000000000000000000000000000000000000000..2b1d9c7e2e748157e54c36516cf3e09c27c924db Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/3. johnny-depp-9542522-1-402.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/30. johnny-depp-2016-900x900.jpg b/notebooks/Block 5/train/johnny depp/30. johnny-depp-2016-900x900.jpg new file mode 100755 index 0000000000000000000000000000000000000000..bbf0158521be609d1991c17f29c4b774f8a868c4 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/30. johnny-depp-2016-900x900.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/31. johnny-depp.jpg b/notebooks/Block 5/train/johnny depp/31. johnny-depp.jpg new file mode 100755 index 0000000000000000000000000000000000000000..26c4ce2435e5730985b80d6e6a882d60d2b0d2ee Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/31. johnny-depp.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/32. b95b25f311c6881d3536719d5c5ee72a.jpg b/notebooks/Block 5/train/johnny depp/32. b95b25f311c6881d3536719d5c5ee72a.jpg new file mode 100755 index 0000000000000000000000000000000000000000..619179da7f3849461627bac58357b4041404b084 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/32. b95b25f311c6881d3536719d5c5ee72a.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/33. 052716-johnn-depp-1995.jpg b/notebooks/Block 5/train/johnny depp/33. 052716-johnn-depp-1995.jpg new file mode 100755 index 0000000000000000000000000000000000000000..1563d4dc526d8a4d590bee32272afbe97c026101 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/33. 052716-johnn-depp-1995.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/34. amber-heard-allegedly-refused-to-file-a-report-with-police-after-claiming-johnny-depp-attack-ftr.jpg b/notebooks/Block 5/train/johnny depp/34. amber-heard-allegedly-refused-to-file-a-report-with-police-after-claiming-johnny-depp-attack-ftr.jpg new file mode 100755 index 0000000000000000000000000000000000000000..a595b38022637143c5d28349164d2b84a35fbb3c Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/34. amber-heard-allegedly-refused-to-file-a-report-with-police-after-claiming-johnny-depp-attack-ftr.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/37. image-1317357-thumb-ynll-1317357.jpg b/notebooks/Block 5/train/johnny depp/37. image-1317357-thumb-ynll-1317357.jpg new file mode 100755 index 0000000000000000000000000000000000000000..f0892bb61c55a70167880630df2f869ef340e8f4 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/37. image-1317357-thumb-ynll-1317357.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/38. 17--diesen-prozess-erspart-er-sich---1-1---spoton-article-702199.jpg b/notebooks/Block 5/train/johnny depp/38. 17--diesen-prozess-erspart-er-sich---1-1---spoton-article-702199.jpg new file mode 100755 index 0000000000000000000000000000000000000000..fcc744b55beb2bccf4218dd2fd010b7f029f6360 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/38. 17--diesen-prozess-erspart-er-sich---1-1---spoton-article-702199.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/4. mv5bmtuznzu4nzy0nv5bml5banbnxkftztcwmzqznty3mw@@._cr343,2,1287,1287_ux402_uy402._sy201_sx201_al_.jpg b/notebooks/Block 5/train/johnny depp/4. mv5bmtuznzu4nzy0nv5bml5banbnxkftztcwmzqznty3mw@@._cr343,2,1287,1287_ux402_uy402._sy201_sx201_al_.jpg new file mode 100755 index 0000000000000000000000000000000000000000..a7f173fc3084fedfb35d4a54ef2978f27498907c Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/4. mv5bmtuznzu4nzy0nv5bml5banbnxkftztcwmzqznty3mw@@._cr343,2,1287,1287_ux402_uy402._sy201_sx201_al_.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/40. johnny-depp-pr--8874359-.jpg b/notebooks/Block 5/train/johnny depp/40. johnny-depp-pr--8874359-.jpg new file mode 100755 index 0000000000000000000000000000000000000000..6c901a8ff87f7ae0a9b5002f65c596f1cc7b41b3 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/40. johnny-depp-pr--8874359-.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/41. f45002f234e5a7ffb579cfff00e1405a.jpg b/notebooks/Block 5/train/johnny depp/41. f45002f234e5a7ffb579cfff00e1405a.jpg new file mode 100755 index 0000000000000000000000000000000000000000..73982d43a362df4ae902b4d11d5327547443d085 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/41. f45002f234e5a7ffb579cfff00e1405a.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/42. jameslileks_1286483750_depp_1.jpg b/notebooks/Block 5/train/johnny depp/42. jameslileks_1286483750_depp_1.jpg new file mode 100755 index 0000000000000000000000000000000000000000..d0711d2d13622683807a29145b527c98284786e2 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/42. jameslileks_1286483750_depp_1.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/43. 41vpqzrsw2l._sx466_.jpg b/notebooks/Block 5/train/johnny depp/43. 41vpqzrsw2l._sx466_.jpg new file mode 100755 index 0000000000000000000000000000000000000000..0c3199f620a8da08c2be2061cfef9532cbd163ca Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/43. 41vpqzrsw2l._sx466_.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/44. 800px-johnny_depp_alice_through_the_looking_glass_premiere-350x350.jpg b/notebooks/Block 5/train/johnny depp/44. 800px-johnny_depp_alice_through_the_looking_glass_premiere-350x350.jpg new file mode 100755 index 0000000000000000000000000000000000000000..81c9f2d699fa382095e526809c73985978216f07 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/44. 800px-johnny_depp_alice_through_the_looking_glass_premiere-350x350.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/45. depp-johnny-image.jpg b/notebooks/Block 5/train/johnny depp/45. depp-johnny-image.jpg new file mode 100755 index 0000000000000000000000000000000000000000..df0f59bf7cf150e7fd56dcc3bf8aebdaaa07c5b3 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/45. depp-johnny-image.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/46. depp_johnny-300x300.jpg b/notebooks/Block 5/train/johnny depp/46. depp_johnny-300x300.jpg new file mode 100755 index 0000000000000000000000000000000000000000..cca9b5bc1101e58433127d936cfc67301e52b91c Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/46. depp_johnny-300x300.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/47. johnny-depp-interview.jpg b/notebooks/Block 5/train/johnny depp/47. johnny-depp-interview.jpg new file mode 100755 index 0000000000000000000000000000000000000000..b6b8b1bebb9bd788e49c532083ced5a47abcec99 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/47. johnny-depp-interview.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/48. 84536-die-liebe-von-johnny-depp-und-amber-heard-ist-verflogen-ebenso-wie-der-respekt-voreinander.jpg b/notebooks/Block 5/train/johnny depp/48. 84536-die-liebe-von-johnny-depp-und-amber-heard-ist-verflogen-ebenso-wie-der-respekt-voreinander.jpg new file mode 100755 index 0000000000000000000000000000000000000000..8dede77f0c51ea8c70a90a43ed8a64fe94e0d5b4 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/48. 84536-die-liebe-von-johnny-depp-und-amber-heard-ist-verflogen-ebenso-wie-der-respekt-voreinander.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/49. johnny_depp_8.jpg b/notebooks/Block 5/train/johnny depp/49. johnny_depp_8.jpg new file mode 100755 index 0000000000000000000000000000000000000000..a1fbb58085c56d67b63ba6fbe5ecee16d30c4633 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/49. johnny_depp_8.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/5. johnny-depp-46900_w767h767c1cx983cy1103.jpg b/notebooks/Block 5/train/johnny depp/5. johnny-depp-46900_w767h767c1cx983cy1103.jpg new file mode 100755 index 0000000000000000000000000000000000000000..7c84ada4abdf269d5d9e03bb9cfe979d47a4552a Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/5. johnny-depp-46900_w767h767c1cx983cy1103.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/50. promifoto-johnny-depp.jpeg b/notebooks/Block 5/train/johnny depp/50. promifoto-johnny-depp.jpeg new file mode 100755 index 0000000000000000000000000000000000000000..abdb1bf88901b42d513755792951cefd03950f61 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/50. promifoto-johnny-depp.jpeg differ diff --git a/notebooks/Block 5/train/johnny depp/51. gettyimages-698327810.jpg b/notebooks/Block 5/train/johnny depp/51. gettyimages-698327810.jpg new file mode 100755 index 0000000000000000000000000000000000000000..c814ebb59cd5a1d460709878094b2cdf60b4d548 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/51. gettyimages-698327810.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/52. johnny-depp-net-worth.png b/notebooks/Block 5/train/johnny depp/52. johnny-depp-net-worth.png new file mode 100755 index 0000000000000000000000000000000000000000..996fa7c751d07db660f8698117533ab22815ffb3 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/52. johnny-depp-net-worth.png differ diff --git a/notebooks/Block 5/train/johnny depp/53. 07-johnny-depp.w330.h330.jpg b/notebooks/Block 5/train/johnny depp/53. 07-johnny-depp.w330.h330.jpg new file mode 100755 index 0000000000000000000000000000000000000000..e302cdfe4b77b06d8f9859d8ad0c9af33755bc2d Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/53. 07-johnny-depp.w330.h330.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/55. johnny-depp--10516827-.jpg b/notebooks/Block 5/train/johnny depp/55. johnny-depp--10516827-.jpg new file mode 100755 index 0000000000000000000000000000000000000000..176c8b1164efb4bdc0844a401ddd3125c3055aad Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/55. johnny-depp--10516827-.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/56. johnny-depp_1.jpg b/notebooks/Block 5/train/johnny depp/56. johnny-depp_1.jpg new file mode 100755 index 0000000000000000000000000000000000000000..f69e23d2c6382b13571d683ec51cf7d2c2af7368 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/56. johnny-depp_1.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/57. johnny-depp_square500x500.jpg b/notebooks/Block 5/train/johnny depp/57. johnny-depp_square500x500.jpg new file mode 100755 index 0000000000000000000000000000000000000000..35dfb67b179b7c45348408ef913130a8e11e4fb9 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/57. johnny-depp_square500x500.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/58. johnny-depp-nail-polish.jpeg b/notebooks/Block 5/train/johnny depp/58. johnny-depp-nail-polish.jpeg new file mode 100755 index 0000000000000000000000000000000000000000..db22bf9e6cb3c632f85da35da654c2bf5dd8ebbb Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/58. johnny-depp-nail-polish.jpeg differ diff --git a/notebooks/Block 5/train/johnny depp/59. rs_300x300-160106195740-600.johnny-depp-peoples-choice-awards-winner.ms.010616.jpg b/notebooks/Block 5/train/johnny depp/59. rs_300x300-160106195740-600.johnny-depp-peoples-choice-awards-winner.ms.010616.jpg new file mode 100755 index 0000000000000000000000000000000000000000..bcc43fa83c65dae9d039f434bc7a9e8328c02014 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/59. rs_300x300-160106195740-600.johnny-depp-peoples-choice-awards-winner.ms.010616.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/60. w500_h500_x250_y250_60c3fdbb2d99096e.jpg b/notebooks/Block 5/train/johnny depp/60. w500_h500_x250_y250_60c3fdbb2d99096e.jpg new file mode 100755 index 0000000000000000000000000000000000000000..448eb46181e23a031082a5de63cf542df5f60010 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/60. w500_h500_x250_y250_60c3fdbb2d99096e.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/61. 20060921172411_7.jpg b/notebooks/Block 5/train/johnny depp/61. 20060921172411_7.jpg new file mode 100755 index 0000000000000000000000000000000000000000..2d809e41c9170706ea8e18de58858c4e59c8588b Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/61. 20060921172411_7.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/62. w500_h500_x250_y250_2f57e52fb321e08d.jpg b/notebooks/Block 5/train/johnny depp/62. w500_h500_x250_y250_2f57e52fb321e08d.jpg new file mode 100755 index 0000000000000000000000000000000000000000..01e28c5a69fc6e97dff9d0dae5befddf1bc17000 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/62. w500_h500_x250_y250_2f57e52fb321e08d.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/63. johnny-depp-talks-about-donald-trump-glastonbury-2017.jpg b/notebooks/Block 5/train/johnny depp/63. johnny-depp-talks-about-donald-trump-glastonbury-2017.jpg new file mode 100755 index 0000000000000000000000000000000000000000..44424ec0692bff82ee849c0a1fdbf2deeac0351d Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/63. johnny-depp-talks-about-donald-trump-glastonbury-2017.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/65. 469608_1.jpg b/notebooks/Block 5/train/johnny depp/65. 469608_1.jpg new file mode 100755 index 0000000000000000000000000000000000000000..b48aeea19d6fef071650992ed1b7f2782f0304e0 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/65. 469608_1.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/66. 14b9d02dc1f_255x255.jpg b/notebooks/Block 5/train/johnny depp/66. 14b9d02dc1f_255x255.jpg new file mode 100755 index 0000000000000000000000000000000000000000..a90ebc897c16255e890fbec8e5175f6083972aff Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/66. 14b9d02dc1f_255x255.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/67. 02--ist-er-ein-so-uebler-boss----1-1---spoton-article-697181.jpg b/notebooks/Block 5/train/johnny depp/67. 02--ist-er-ein-so-uebler-boss----1-1---spoton-article-697181.jpg new file mode 100755 index 0000000000000000000000000000000000000000..382fca2c5b3a49f9504065263e537be0e2cd8627 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/67. 02--ist-er-ein-so-uebler-boss----1-1---spoton-article-697181.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/7. johnny-depp-9542522-1-402.jpg b/notebooks/Block 5/train/johnny depp/7. johnny-depp-9542522-1-402.jpg new file mode 100755 index 0000000000000000000000000000000000000000..14b758cd7140a0e4475a2759681ed47d534ee492 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/7. johnny-depp-9542522-1-402.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/8. johnny-depp.jpg b/notebooks/Block 5/train/johnny depp/8. johnny-depp.jpg new file mode 100755 index 0000000000000000000000000000000000000000..d0393169f356dcf4ee82a613c356f517b0700be8 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/8. johnny-depp.jpg differ diff --git a/notebooks/Block 5/train/johnny depp/9. johnny-depp-t2902.jpg b/notebooks/Block 5/train/johnny depp/9. johnny-depp-t2902.jpg new file mode 100755 index 0000000000000000000000000000000000000000..475c47123d07b772b6bc8011c89b7b6de30b29b3 Binary files /dev/null and b/notebooks/Block 5/train/johnny depp/9. johnny-depp-t2902.jpg differ diff --git a/notebooks/Block 5/validation/johnny depp/100. realstar-2018-super-star-johnny-depp-sonnenbrille-f-r-m-nner-frauen-marke-designer-retro-nieten.jpg b/notebooks/Block 5/validation/johnny depp/100. realstar-2018-super-star-johnny-depp-sonnenbrille-f-r-m-nner-frauen-marke-designer-retro-nieten.jpg new file mode 100755 index 0000000000000000000000000000000000000000..8329dd373606b5ae8ce7129332e7dd6bf482ffc5 Binary files /dev/null and b/notebooks/Block 5/validation/johnny depp/100. realstar-2018-super-star-johnny-depp-sonnenbrille-f-r-m-nner-frauen-marke-designer-retro-nieten.jpg differ diff --git a/notebooks/Block 5/validation/johnny depp/88. johnny-depp-feels-bad.jpg b/notebooks/Block 5/validation/johnny depp/88. johnny-depp-feels-bad.jpg new file mode 100755 index 0000000000000000000000000000000000000000..1f435909818ff26aca7359f5e0137a0d21cde43f Binary files /dev/null and b/notebooks/Block 5/validation/johnny depp/88. johnny-depp-feels-bad.jpg differ diff --git a/notebooks/Block 5/validation/johnny depp/89. johnny_depp.jpg b/notebooks/Block 5/validation/johnny depp/89. johnny_depp.jpg new file mode 100755 index 0000000000000000000000000000000000000000..2b978d36f5111a4fe57651490b7a174e2b3aa996 Binary files /dev/null and b/notebooks/Block 5/validation/johnny depp/89. johnny_depp.jpg differ diff --git a/notebooks/Block 5/validation/johnny depp/90. johnny-depp-300x300.jpg b/notebooks/Block 5/validation/johnny depp/90. johnny-depp-300x300.jpg new file mode 100755 index 0000000000000000000000000000000000000000..f14c46dd3ee23445f62d21d9fa6b2afb90776f9f Binary files /dev/null and b/notebooks/Block 5/validation/johnny depp/90. johnny-depp-300x300.jpg differ diff --git a/notebooks/Block 5/validation/johnny depp/92. mortdecai.jpg b/notebooks/Block 5/validation/johnny depp/92. mortdecai.jpg new file mode 100755 index 0000000000000000000000000000000000000000..7a14d05678ecb1c42c5336b5a50513812f513733 Binary files /dev/null and b/notebooks/Block 5/validation/johnny depp/92. mortdecai.jpg differ diff --git a/notebooks/Block 5/validation/johnny depp/95. johnny-depp-mit-sonnenbrille-und-hut.jpg b/notebooks/Block 5/validation/johnny depp/95. johnny-depp-mit-sonnenbrille-und-hut.jpg new file mode 100755 index 0000000000000000000000000000000000000000..8ef9fcead5ddb00249ab110514fb960ca9b9992b Binary files /dev/null and b/notebooks/Block 5/validation/johnny depp/95. johnny-depp-mit-sonnenbrille-und-hut.jpg differ diff --git a/notebooks/Block 5/validation/johnny depp/96. johnny-depp-celebrity-cardboard-mask-product-image.jpg b/notebooks/Block 5/validation/johnny depp/96. johnny-depp-celebrity-cardboard-mask-product-image.jpg new file mode 100755 index 0000000000000000000000000000000000000000..483b5ffce7150be740c16008fde96e4766bd5d4c Binary files /dev/null and b/notebooks/Block 5/validation/johnny depp/96. johnny-depp-celebrity-cardboard-mask-product-image.jpg differ diff --git a/notebooks/Block 5/validation/johnny depp/97. johnny_depp-300x3002.jpg b/notebooks/Block 5/validation/johnny depp/97. johnny_depp-300x3002.jpg new file mode 100755 index 0000000000000000000000000000000000000000..831160e6c1ef8f2ec6cc34fb3642be98aaf4f40f Binary files /dev/null and b/notebooks/Block 5/validation/johnny depp/97. johnny_depp-300x3002.jpg differ diff --git a/notebooks/Block 5/validation/johnny depp/98. product-image-190232820_530x.jpg b/notebooks/Block 5/validation/johnny depp/98. product-image-190232820_530x.jpg new file mode 100755 index 0000000000000000000000000000000000000000..bbf776fae467e7107b184b3232fad5dc6588d6d1 Binary files /dev/null and b/notebooks/Block 5/validation/johnny depp/98. product-image-190232820_530x.jpg differ diff --git a/notebooks/Block 5/validation/johnny depp/99. 1846484611-johnny-depp-almost-ruined-by-lavish-spending-lawsuit-1uxi.jpg b/notebooks/Block 5/validation/johnny depp/99. 1846484611-johnny-depp-almost-ruined-by-lavish-spending-lawsuit-1uxi.jpg new file mode 100755 index 0000000000000000000000000000000000000000..dea4019f286c7ea7fe016db0159b058e4b5d474a Binary files /dev/null and b/notebooks/Block 5/validation/johnny depp/99. 1846484611-johnny-depp-almost-ruined-by-lavish-spending-lawsuit-1uxi.jpg differ