1 00:00:00,000 --> 00:00:01,000 [no audio] 2 00:00:01,000 --> 00:00:03,500 Okay, let's go ahead and get started using a model. 3 00:00:03,500 --> 00:00:06,500 A model is basically an intelligent mathematical system 4 00:00:06,500 --> 00:00:10,000 to determine exactly what kind of image or what kind of object 5 00:00:10,050 --> 00:00:11,090 is inside of an image. 6 00:00:12,200 --> 00:00:15,800 And so we need that by downloading a specific model here. 7 00:00:15,820 --> 00:00:18,990 Now, there's tons of different mathematical models around 8 00:00:19,000 --> 00:00:21,900 the world, and we're just going to use this one from 9 00:00:22,900 --> 00:00:29,500 OlafenwaMoses. I apologize if you're watching and I butchered your 10 00:00:29,500 --> 00:00:33,200 name. '/AI/releases', yada-yada-yada. 11 00:00:33,210 --> 00:00:35,450 I'll leave this link in the description down below so you 12 00:00:35,460 --> 00:00:36,530 can access this at any time. 13 00:00:36,530 --> 00:00:39,600 This is just going to download a '.h5' file for us. 14 00:00:41,300 --> 00:00:42,300 And I would 15 00:00:43,800 --> 00:00:44,800 like to save this file. 16 00:00:46,300 --> 00:00:48,600 And when I go ahead and open up a Finder or if you're in 17 00:00:48,600 --> 00:00:51,200 Windows, like use Explorer. Really, any program. 18 00:00:51,200 --> 00:00:54,600 This is just looking at my downloaded files really. 19 00:00:54,630 --> 00:00:57,030 So I've got this file in here, and I'm going to just copy 20 00:00:57,030 --> 00:00:58,200 this into my new project. 21 00:00:59,400 --> 00:01:01,700 So what I'm going to do, is I just have this 'Projects' file, 22 00:01:01,700 --> 00:01:04,800 and you can see that '.venv' folder doesn't actually show up, 23 00:01:04,860 --> 00:01:06,530 but I'm just going to copy this over. 24 00:01:06,599 --> 00:01:08,600 So copy-paste. 25 00:01:08,600 --> 00:01:12,500 And in my command line, if I do 'ls -la', you can see that that 26 00:01:12,500 --> 00:01:14,800 file is now in there. Now, that's cool. 27 00:01:14,820 --> 00:01:16,850 But currently we're working off the command line, and in 28 00:01:16,850 --> 00:01:18,700 real life, you're not going to be working off the command line, 29 00:01:18,700 --> 00:01:20,000 so let's make this a little more real. 30 00:01:20,070 --> 00:01:21,440 I'm going to open up VS Code, 31 00:01:21,450 --> 00:01:24,260 that's my text editor, but you can use Sublime. 32 00:01:24,300 --> 00:01:26,100 Atom, really anything else. 33 00:01:26,100 --> 00:01:29,500 And here we can see I've got my 'requirements' file, and 34 00:01:29,500 --> 00:01:32,250 I have this '.h5' file that I'm not even going to try to open because 35 00:01:32,260 --> 00:01:34,200 it's like 150 Megs or something like that. 36 00:01:34,200 --> 00:01:35,400 So it's a pretty big file. 37 00:01:35,460 --> 00:01:37,430 And honestly, you know, let's see. 38 00:01:37,500 --> 00:01:39,400 Yeah, can't even read it, so that's fine. 39 00:01:39,480 --> 00:01:44,670 So just make sure that you have that 'resnet50.h5' file downloaded, 40 00:01:44,680 --> 00:01:47,890 and beside your 'requirements.txt' file. They're not technically 41 00:01:47,900 --> 00:01:50,500 related, but we're going to make sure that everything is in the same folder. 42 00:01:50,500 --> 00:01:52,900 So once all your files are in the same folder, 43 00:01:52,900 --> 00:01:54,400 head on over to that next lesson, 44 00:01:54,400 --> 00:01:57,900 and we're actually going to get started with some code.