MobileNet Image Classification with TensorFlow's Keras API

  Рет қаралды 43,345

deeplizard

deeplizard

Күн бұрын

Пікірлер: 49
@deeplizard
@deeplizard 4 жыл бұрын
👉 Check out the blog post and other resources for this video: 🔗 deeplizard.com/learn/video/OO4HD-1wRN8 👀 Come say hey to us on OUR VLOG: 🔗 kzbin.info
@soroush_thr
@soroush_thr 4 жыл бұрын
Ma'am, you are brilliant! KZbin needs more people like you.
@PatChizzy
@PatChizzy 3 жыл бұрын
I've read articles on mobilenet, none gave me such great insight as this 14mins video. Really amazing. Thank you
@kseniasidorova9264
@kseniasidorova9264 3 жыл бұрын
Thank you so much for the whole series, the best explanation of CNN in Keras I could ever wish for!
@adi11cr7
@adi11cr7 2 жыл бұрын
Day 1 on this channel, already in love with it.
@prashantgupta6885
@prashantgupta6885 4 жыл бұрын
Your vlog channel is awesome
@thibaudplanqueel6933
@thibaudplanqueel6933 3 жыл бұрын
I've learn a lot about deep learning by watching this channel, thanks for this great work ! It was helping me a lot to understand basics in computer vision. Best regards
@Prathik99
@Prathik99 4 жыл бұрын
Please make a video on using differential learning rates for transfer learning in keras and the best practices to be followed for fine tuning the mobile net.
@joxa6119
@joxa6119 2 жыл бұрын
Where can I get the MobileNet sample images?
@lenxhhn3724
@lenxhhn3724 Ай бұрын
u search them yourself
@marvit9167
@marvit9167 4 жыл бұрын
That is definitively a cappuccino. There is still a long way to go before we get a full-fledged artificial Italian lol. Anyway nice video and fantastic channel. Keep up the good work.
@HaydenL
@HaydenL 3 жыл бұрын
The hardest part will be teaching the network proper Italian hand gestures when making predictions. Maybe add a gesticulate layer to the output?
@tymothylim6550
@tymothylim6550 3 жыл бұрын
Thank you very much for this educational video! I didn't know much about MobileNet until now! Thank you also for showing the function used to preprocess your images - it helps me understand the sort of file format that Deep Learning models in Keras usually need.
@Sikuq
@Sikuq 4 жыл бұрын
Absolutely great. Thank you.
@Officer-kd6
@Officer-kd6 Жыл бұрын
Great video, thank you!
@ajitegar7738
@ajitegar7738 3 жыл бұрын
Hi Mandy, I have a problems mobilenetV2 from fine tuning. In the decode_predictions` expects ' 'a batch of predictions ' '(i.e. a 2D array of shape (samples, 1000)). ' 'Found array with shape: (1, 3). How is the solution ?. Thanks
@petaca39
@petaca39 3 жыл бұрын
Good video, I want to make some inquiries 1- the image that I want to classify jpg must have a special size or resolution so that MobileNet processes it better 2- you can introduce new classifications or images to MobileNet for example of bacteria since I tried with some images and does not classify them if it is possible how it can be done
@velmuruganr9321
@velmuruganr9321 3 жыл бұрын
This is awesome
@eduardorabelo3972
@eduardorabelo3972 9 ай бұрын
Am I late to ask about the samples of this video? I really dont understand how can i get the MobileNet-samples used in the function prepare_image.
@georgepalafox5967
@georgepalafox5967 4 жыл бұрын
Awesome video! Do u have videos on GANs? Looking for a tutorial. Thx.
@susantachary7456
@susantachary7456 3 жыл бұрын
You made my day.. Really Cool Tutorial.
@lalitsingh5150
@lalitsingh5150 4 жыл бұрын
Please make a video on GAN using own dataset
@abdulwadood6927
@abdulwadood6927 4 жыл бұрын
Had to Use, below 2: from keras.preprocessing import image from keras.applications import imagenet_utils to avoid following errors: "NameError: name 'imagenet_utils' is not defined" "NameError: name 'image' is not defined" Also my confusion matrix TN and TP are not coming in high even after VGG16 fine tune-ing
@aishaj4082
@aishaj4082 3 жыл бұрын
Hi, Can MobileNets be used for short sound file ( 2 -3 seconds) if it is converted to spectrograms ?
@AbdullahJirjees
@AbdullahJirjees 3 жыл бұрын
I have around 10000 images database and I did the annotation and I created the .CSV file, How Can I use it with MobileNet ?
@giovannicordova4803
@giovannicordova4803 2 ай бұрын
Is Abella Danger now teaching Neural Networks?
@Mrduirk
@Mrduirk 2 жыл бұрын
exist for mobilenetv2 a dcgan?
@ragavkishoreg
@ragavkishoreg 4 жыл бұрын
I am thinking about doing a project based on this ? Could you tell me what basic should I know of ML and Deep learning before I can understand this and implement project based on MobileNets ??
@nasrkruithof6372
@nasrkruithof6372 4 жыл бұрын
Which version of MobileNet is used here?
@marsrocket
@marsrocket 4 жыл бұрын
The MobileNet model in the model zoo uses 300x300 input size. Is the TF version different? If so, is this documented anywhere?
@deeplizard
@deeplizard 4 жыл бұрын
Yes, it uses an input shape of (224,224,3). Documented below in the description of the input_shape parameter. www.tensorflow.org/api_docs/python/tf/keras/applications/MobileNet
@pulkitaggarwal6130
@pulkitaggarwal6130 4 жыл бұрын
I decided to do an image coloring project using CNN, I know what I have to do but don't know how to do it cause it's my first project.
@wagnersantos7818
@wagnersantos7818 4 жыл бұрын
was this episode reposted? I thought I saw him
@patrickpuentelml4958
@patrickpuentelml4958 4 жыл бұрын
Hi Miss can you do a video training your own custom object detector for a especific object using Mobilenet SSD ? Please Thanks for share the theory I love it :)
@codechef117
@codechef117 3 жыл бұрын
Image(filename='data/MobileNet-samples/1.PNG', width=300,height=200) I am getting error on this line FileNotFoundError: [Errno 2] No such file or directory: 'data/MobileNet-samples/1.PNG' Please help me.
@berbatsuleiman
@berbatsuleiman 6 ай бұрын
same problem occurs.
@rudeviper
@rudeviper 4 жыл бұрын
I think this is the cupertino coffee
@tintiniitk
@tintiniitk 2 жыл бұрын
8:59 : "If you are not aware. And I don't know how you can not be aware of this...". Umm, I am not an American, so ..
@deeplizard
@deeplizard 2 жыл бұрын
Given the name of this channel, the statement was a joke indicating that everyone's top priority should be in studying/knowing all about lizards 🦎
@tintiniitk
@tintiniitk 2 жыл бұрын
@@deeplizard Good point. I didn't connect the dots. Guess my mental model is not well trained for such jokes.
@deeplizard
@deeplizard 2 жыл бұрын
Just needs a bit of fine-tuning and transfer learning 😅
@aguiremedia
@aguiremedia 4 жыл бұрын
Wait why are you in Vietnam?
@GauravSingh-ku5xy
@GauravSingh-ku5xy 4 жыл бұрын
They travel.
@06_PrathamGarg
@06_PrathamGarg 8 ай бұрын
NOT SATISFIED
@carterhearst
@carterhearst 4 жыл бұрын
Are Chris and you siblings or related?
@mujamilkhan714
@mujamilkhan714 4 жыл бұрын
Why you always wear same t-shirt in every video is there any sentiment kinda.????? BTW your videos are awesome 👏🏻
@deeplizard
@deeplizard 4 жыл бұрын
Top secret 🤫
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 62 МЛН
Load Balancers are not Magic - Dissecting Atlassian Outage
13:07
Arpit Bhayani
Рет қаралды 6 М.
Build a Fine-Tuned Neural Network with TensorFlow's Keras API
11:49
YOLO11 Image Classification on Custom Dataset
11:59
DSwithBappy
Рет қаралды 1,9 М.
Image Classification using CNN Keras | Full implementation
17:56
Learn With Jay
Рет қаралды 196 М.
Classifying images with MobileNetV2 using Keras and Python [Part 3]
14:40
Sebastiaan Mathôt
Рет қаралды 15 М.
Neural Network Predictions with TensorFlow's Keras API
8:55
deeplizard
Рет қаралды 19 М.
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 62 МЛН