No video

Train YOLO to detect a custom object (online with free GPU)

  Рет қаралды 256,401

Pysource

Pysource

Күн бұрын

Files and Instructions: pysource.com/2...
In this tutorial I’m going to explain you one of the easiest way to train YOLO to detect a custom object even if you’re a beginner and have no experience with coding.
You will need just a simple laptop (windows, linux or mac), as the training is going to be done online, taking advantage of the free gpu offered by google colab.
We can train YOLO to detect a custom object, I choosed for example to detect a Koala, you can choose any animal/object you prefer.
➤ Full Videocourses:
Object Detection: pysource.com/o...
➤ Follow me on:
Instagram: / pysource7
LinkedIn: / pysource
➤ For business inquiries:
pysource.com/c...

Пікірлер: 567
@pysource-com
@pysource-com 2 жыл бұрын
►► You can Build a Computer Vision software to DETECT and TRACK any Object. → 4-Step FREE Workshop pysource.com/blueprint-workshop-signup/
@Creek1575
@Creek1575 4 жыл бұрын
This is the most beginner/pro friendly tutorial i've ever seen.
@kishore3785
@kishore3785 4 жыл бұрын
608 x 608 create 6 permanent cpu-threads help this
@JNK369
@JNK369 4 жыл бұрын
True
@Anushka-dy5in
@Anushka-dy5in 3 жыл бұрын
@@kishore3785 did you get the solution to it?
@vbprogrammingchannel
@vbprogrammingchannel 2 жыл бұрын
@@kishore3785 same here. How do you fix it?
@hritikgupta8765
@hritikgupta8765 4 жыл бұрын
Please make a video tutorial for multiple class object detection, would be very helpful. Thanks
@lucasharim
@lucasharim 3 жыл бұрын
Wombat in the 4th picture: "Am I a joke to you ?"
@unclesam7853
@unclesam7853 Жыл бұрын
This is so so helpful Thank you so much Literally no other video on KZbin has a tutorial like this which shows how to save the custom trained yolo model and use it in your own project
@StudentTasksChannel
@StudentTasksChannel 2 жыл бұрын
Thanks for your tutorial about YOLO.. Helping student finished their Tasks 🙏👍👍
@dokenedgar8778
@dokenedgar8778 3 жыл бұрын
If your execution stops with "608 x 608 create 6 permanent cpu-threads"... Check: - all image files are .jpg, no .png - all image files have corresponding .txt labels - the class of your label is what's in the colab notebook, not 'Koala' (i.e if you're using something else)
@syedwaliuddin3656
@syedwaliuddin3656 2 жыл бұрын
My code stops at 608x608 And my images are png , And the weight files are not uploading on my gdrive yolov3 folder :(
@muhammadridwansyahputralub4205
@muhammadridwansyahputralub4205 2 жыл бұрын
hello Doken, can you explain the detail about third point?
@nickkosir9895
@nickkosir9895 2 жыл бұрын
Also, if your zipped folder "images" contains another folder that contains the actual image files (jpg,txt), then I get the same 608X608 message. So, I had to make sure my zipped images.zip folder didn't contain any nested folders and only contained the data (images and text files)
@imagenigraphics
@imagenigraphics 3 жыл бұрын
this tutorial is super easy! thank you for this, I'm training my own yolo weights at the moment
@gaurangpatel9968
@gaurangpatel9968 4 жыл бұрын
I have one question here. How can we use preprinted model and add our newly trained model with that. For example i have 80 classes in coco names but now i trained model with 2 new classes and i want that 80 and also 2 new classes. So in result my model is able to detect total 82 object. Please Help me for this...
@khushboopriya9895
@khushboopriya9895 4 жыл бұрын
hi, did you find any way ? Can you share
@prashantmishra2179
@prashantmishra2179 4 жыл бұрын
you can freeze the model till the last convolution layer, add 82 units in the next layer with softmax activation, and then retrain this last layer with the input of the frozen layer on the new dataset with 82 classes.
@marx427
@marx427 3 жыл бұрын
khushboo priya transfer learning
@hexiangpan7789
@hexiangpan7789 4 жыл бұрын
You saved my weekend holiday, thank you!
@murattoprak644
@murattoprak644 3 жыл бұрын
You earned my subscription, too (someone said this below). Great work. Keep it up!
@adarshds3
@adarshds3 3 жыл бұрын
Great tutorial! Useful content for sure. Thank you very much. Could you let me know the changes which need to be performed for multiple object detection?
@adem880
@adem880 2 жыл бұрын
Hi Sergio, great tutorial! I have one quick question though which I'm sure a lot of people are wondering about. I keep getting disconnected from colab which prevents me from finishing the training. Instead of training the model from scratch again, is it possible to load latest weights instead of pretrained ones and continue training from there in new session? Many thanks!
@IngFDGang
@IngFDGang 3 жыл бұрын
Thank you soo much bro, very good and clear lectures , no biting about the bushes.
@achintyatripathi1199
@achintyatripathi1199 3 жыл бұрын
Sir. It was great to see your video and the way each part was explained was great Thank You and keep up the great work.
@jitusaini
@jitusaini 4 жыл бұрын
Thank you, It's working very well. Please teach how to train multiple animals.
@lauradonelian
@lauradonelian 4 жыл бұрын
Great Video!! When it is possible, could you make a video considering 2 classes? Like cats and dogs... or Koalas and Bears? Tks!!!
@matssoto6061
@matssoto6061 2 жыл бұрын
Thank you very much Sergio this is a great tutorial. I would be interested in knowing how to extend the code for detecting more classes. Would you give an update?
@roshansuvaris6942
@roshansuvaris6942 4 жыл бұрын
Thank you... Awesome... It worked properly for my dataset...
@brentsimpson3791
@brentsimpson3791 2 ай бұрын
Thanks! I think my brain just exploded....
@mykolatokariev8260
@mykolatokariev8260 2 жыл бұрын
Hey, nice tutorial. Thanks a lot. I did the same thing, but suddenly got an error like this one: output_layers = [layer_names[i[0] - 1] for i in net.getUnconnectedOutLayers()] IndexError: invalid index to scalar variable. Do you have an idea what is wrong with this? I see taht opencv.dnn.readNet( ) doesnt have any response. But I can't understand why. Can you give me a tip?!
@hienongxuan3588
@hienongxuan3588 2 жыл бұрын
Change i[0] to i
@iremdemirci2357
@iremdemirci2357 2 жыл бұрын
@@hienongxuan3588 Thank you.
@yashbhole8917
@yashbhole8917 2 жыл бұрын
@@hienongxuan3588 Hello, for me changing i[0] to i only gives the image as it is. It's not identifying the image. What could be the problem?
@neetesshhr
@neetesshhr 4 жыл бұрын
Traceback (most recent call last): File "yolo_object_detection.py", line 8, in net = cv2.dnn.readNet("yolov3_training_last(1).weights", "yolov3_testing.cfg") cv2.error: OpenCV(4.2.0) /io/opencv/modules/dnn/src/darknet/darknet_importer.cpp:214: error: (-212:Parsing error) Failed to parse NetParameter file: yolov3_training_last(1).weights in function 'readNetFromDarknet'
@feliperamirez9048
@feliperamirez9048 4 жыл бұрын
You’re a master Sir, I had no idea about this and I could do it! Thank u very much!!
@ritikajha2700
@ritikajha2700 4 жыл бұрын
where u get dataset?
@alekssgolovcenko2523
@alekssgolovcenko2523 3 жыл бұрын
Hey man! Nice video I really enjoy it, easy to follow and everything but when I get to the last step on the image processing instead of learning it takes only a few seconds and then a message pops up saying "Create 6 permanent CPU-threads ". Any Idea what could be the problem?
@dicharjachkson8003
@dicharjachkson8003 3 жыл бұрын
Hey! i have same problem, do you solved the problem?
@alekssgolovcenko2523
@alekssgolovcenko2523 3 жыл бұрын
@@dicharjachkson8003 Ye I did, it is important that you have the right file format... I had .JPG files but it only accepts .jpg files... Ye, it doesn't accept .JPG with capital letters...
@hendriyawanachmad2017
@hendriyawanachmad2017 4 жыл бұрын
simply and easy understanding tutorial, thanks
@ragaventhrananandhan9119
@ragaventhrananandhan9119 3 жыл бұрын
How can i train for more than 1 classes
@asadullashaikh4977
@asadullashaikh4977 4 жыл бұрын
can I use this same code for multiple object detection?
@shalerr5513
@shalerr5513 3 жыл бұрын
let me know if you find the answer please
@zaidsiddique5777
@zaidsiddique5777 3 жыл бұрын
Yeah please let me know too
@khanshehzadali8392
@khanshehzadali8392 3 жыл бұрын
yes plz let me know too becoz i m also working on same kind of project.
@rohitjg
@rohitjg 3 жыл бұрын
This is exactly what i expected since i had amd ryzen laptop i cant use cuda but this helped me!! Thank you!!
@artishah9000
@artishah9000 2 жыл бұрын
Great tutorial! Thank you very much for this. Can you please make a detailed video on how to detect a custom object in live stream? Thank You
@kesinirajesh7986
@kesinirajesh7986 3 жыл бұрын
this is the very good video for beginners, I have ever seen...thnk you so much
@adityendrapratapsingh7999
@adityendrapratapsingh7999 Жыл бұрын
I can't find the labellmg software through the link.
@yvantinguha9424
@yvantinguha9424 Жыл бұрын
I can't also find the labelImg software huhuhu
@Melonpancito
@Melonpancito 3 жыл бұрын
Do images in the dataset have to be of some specific size in pixels? also, do all of them have to be of the same type e.g. all of them landscape or square, or it doesn't matter?
@programmerjowo
@programmerjowo 3 жыл бұрын
did you know what is the best image resolution?
@simplesyntax2341
@simplesyntax2341 4 жыл бұрын
super, waiting for next video
@michaelaaronsy6214
@michaelaaronsy6214 3 жыл бұрын
Hi I would like to ask why does it prompt "'sed' is not recognized as an internal or external command, operable program or batch file." when I try to run the program
@TirthajitBaruah
@TirthajitBaruah 3 жыл бұрын
Great video brother, simple and crisp. Also, it would be great if u cud tell me how to implement this for real-time object detection.
@johannamonin5884
@johannamonin5884 3 жыл бұрын
Hello, I don't see the image when I execute the programm. Can you help me ?
@srivatsan804
@srivatsan804 4 жыл бұрын
Do we need to change the image sizes before uploading and do we need to resize the x, y labels in the .txt file according to the input 416 size that the yolo takes? Please help pysource.
@m7mmd244
@m7mmd244 2 жыл бұрын
What a great tutorial, I really learned a new thing. I have one question, how can I train this yolov3 and save the model in h5 and cfg files, I am really struggled here ://
@alexandrpetrov1110
@alexandrpetrov1110 4 жыл бұрын
Amazing tutorial, everything works
@charissayu8025
@charissayu8025 3 жыл бұрын
Hi Thank you for this fantastic video! May I know how to change the code if we train in local computer GPU instead of Google colab? Thanks!
@azamatzhubandykov5642
@azamatzhubandykov5642 3 жыл бұрын
Why getting ( process finished with exit code 0) on pycharm without any output?!
@ehsanziaee1183
@ehsanziaee1183 3 жыл бұрын
I am having the same problem. I tried the code on Pycharm a month ago and it's working fine but right now I don't get any images at the output when I run the Train_yolo_to_detect_custom_object. I don't know what I'm doing different or what could go wrong. I also don't get any error.
@nurulnajwa8963
@nurulnajwa8963 2 жыл бұрын
Hi sir, I have tried using my own images which I am detecting melon fruit. However, it is not giving me the exact position when i tested it on Python. Perhaps you could explain what may cause it to be inaccurate? Thank you so much sir
@avinashsoni9533
@avinashsoni9533 Жыл бұрын
you are awesome and ,something to the point and exactness!
@nabajitdey
@nabajitdey 4 жыл бұрын
thank you so much!! can you please tell the changes we need for multiple classes
@mohsin4397
@mohsin4397 4 жыл бұрын
any changes required? i am trying for 3 classes
@MB-tv8im
@MB-tv8im 3 жыл бұрын
How to Re-train custom yolo weights?
@queenelozabeth
@queenelozabeth 2 жыл бұрын
I am looking for that! Any solution??
@rog0079
@rog0079 4 жыл бұрын
Hey! great video i just want to know if we were training for multi classes so what changes to be made in this line: !echo "Apple Orange Banana Bread Carrot Grape Juice Lemon Pizza Tomato" > data/obj.names like this ? or this is wrong can u pls help!
@Anushka-dy5in
@Anushka-dy5in 3 жыл бұрын
Hey, I am not getting the file in my drive after training. What should I do?
@x-raymusic5221
@x-raymusic5221 2 жыл бұрын
that is because you did not save the file in yolo format while using labelImg, you probably saved it with pascal formal.
@idaitesamatarp
@idaitesamatarp 3 жыл бұрын
i try to badminton racket but didnt work, i have 200 images. Can you help my problem?
@VolleCe
@VolleCe 5 ай бұрын
first of all I wanted to thank you for the successful video, you explain really simple, I have followed your instructions but the files are not created after the training, maybe you can tell me what I'm doing wrong Greetings Volle
@samhitajoshi
@samhitajoshi 4 жыл бұрын
Got to learn some new things. Informative video, not like boring style Videos.
@phillipspodcast
@phillipspodcast 4 жыл бұрын
hey, great video! I was going to create a video about building a koala bear detector and found you already did it! lol, I will just choose a diferent marsupial : P
@phillipspodcast
@phillipspodcast 4 жыл бұрын
By the way, great channel!
@mjaworsky2010
@mjaworsky2010 4 жыл бұрын
Thanks for this, the hardest part appears to be setting the parameters in the yolo config file. Yolo's default of 20 - 80 objects is not helpful. 1 class is much easier to start with.
@dyaakhaled9219
@dyaakhaled9219 3 жыл бұрын
Why getting ( process finished with exit code 0) on pycharm without any output?! I am using python 3.7
@azamatzhubandykov5642
@azamatzhubandykov5642 3 жыл бұрын
How did you solved this problem?
@k.o.v_3639
@k.o.v_3639 3 жыл бұрын
How did you solved that problem??? Please
@dyaakhaled9219
@dyaakhaled9219 3 жыл бұрын
Unfortunately no solution i found, giving "exit code 0" is good thing giving indication that the code working fine but no output
@dionstefenmarsahalasinaga5223
@dionstefenmarsahalasinaga5223 2 жыл бұрын
hi,, Error: l.outputs == params.inputs filter= in [convolutional]-layer does not match class= or mask= in [yolo]-layer magsut from error mentrain data, why?
@jouiniahmed8834
@jouiniahmed8834 2 жыл бұрын
does anyone knows why i don"t find the model and weights on the yolov3 after training ?
@hamez1300
@hamez1300 4 жыл бұрын
Hey man great video! I'm working on a project which also requires detecting koalas. Is there any chance I could borrow your dataset? Thanks!
@AfnanKhakwani
@AfnanKhakwani 4 жыл бұрын
Stunned by your work. Love from Pakistan
@hanishahzada230
@hanishahzada230 3 жыл бұрын
From where you have find colab notebook?
@peteroregan7786
@peteroregan7786 3 жыл бұрын
Very informative tutorial - thanks!
@satyabratsharma486
@satyabratsharma486 4 жыл бұрын
great video , please tell ..can we use the same method for multiple classes??
@gritsanapongpunti7121
@gritsanapongpunti7121 3 жыл бұрын
I try to train in linux on GPU but idk how to enable GPU. But now i can fix it. thanks this VDO
@mmnn9982
@mmnn9982 2 жыл бұрын
I followed all steps in the video but I had this error in the end (error you set incorrect value batch=1 for training you should set batch=64 subdivision=64) can anyone help me
@yoniazhar3896
@yoniazhar3896 4 жыл бұрын
Thanks. It's a great tutorial and super easy. How to show loss training loss and accuracy anyway?
@siddharthct4799
@siddharthct4799 2 жыл бұрын
Precise and very informative
@shawntai
@shawntai 3 жыл бұрын
Wait, correct me if I'm wrong, but are you using the same dataset of images for both training and testing? Because I don't see you splitting them into the training set and testing set anywhere in your video. Thanks!
@rahulkelkar1246
@rahulkelkar1246 3 жыл бұрын
I have the same doubt
@lawrencechen0215
@lawrencechen0215 3 жыл бұрын
There are some stupid mistakes I have made. Sorry for my poor English. 1. Do the exact same way to zip all the files and images. (It means that we should ctrl+A to select all the files and right-click to zip them so that the files will right be inside the zip file.) 2. Be sure that your class.txt should only have one class, and all of the text files should start with 0, which means that it belongs to class 0. (I labeled my data "car", but I selected the one provided by labelImg , so it turned out to be multiple classes.)
@lawrencechen0215
@lawrencechen0215 3 жыл бұрын
I have the problems 2) Why does your output stop here: "608 x 608 create 6 permanent cpu-threads"? at first.
@lawrencechen0215
@lawrencechen0215 3 жыл бұрын
You can also check out the Extract Images part, print(images_list) shouldn't just print [] , it means that it doesn't detect our images.
@kaizen8492
@kaizen8492 2 жыл бұрын
@@lawrencechen0215 I am getting this problem where it prints [], how can I resolve this?
@nunobartolo2908
@nunobartolo2908 3 жыл бұрын
nice work. I'm confused does the training you did on the koala dataset happen on a yolo model with all weights initialized randomly or are the weights of the inner model locked during training? or do you need to import pre trained weights if you want transfer leaning some custom datasets are very small how is it able to fit such a huge model??
@queenelozabeth
@queenelozabeth 2 жыл бұрын
Did Anyone solve the transfer learning with previous weights??
@m.pavankalyan2650
@m.pavankalyan2650 Жыл бұрын
@@queenelozabeth can you plaese send the source code
@ironrockygamer3840
@ironrockygamer3840 Жыл бұрын
I can't find the ipynb file at all
@edu_6161
@edu_6161 2 жыл бұрын
Hi! Excellent video! I've also watched the workshop... Awesome... One question... If I have a "moving" background, not fixed, the only way to track one exclusively item is by Yolo? I was trying but it's very heavy for mobile, isn't it?
@lucreziatosato360
@lucreziatosato360 2 жыл бұрын
Hi! Thanks for the tutorial, can you explain a bit what happens after the image extractions? It is not very clear to me! I'm trying to make a "heads" detector, so I trained the network in images where there are many different heads (in the .txt file I have many rows with the various bounding boxes present in an image). As the camera is on top, it is a very difficult task, indeed, some heads look more like black circles... So I tried to do Data Augmentation, but this time the iteration stops around 1000 instead of 2000, I have no idea why...
@yevhenlebedenko2049
@yevhenlebedenko2049 4 жыл бұрын
Thank you very much, it's the best tutorial today
@rlb5261
@rlb5261 3 жыл бұрын
Thank you. Excellent video!!!!
@FredyGonzales
@FredyGonzales 3 жыл бұрын
El mejor curso, un excelente maestro, gracias por compartir.
@mostafaibrahim5154
@mostafaibrahim5154 8 ай бұрын
When I try to test the predictions this error appears IndexError: invalid index to scalar variable. output_layers = [layer_names[i[0] - 1] for i in net.getUnconnectedOutLayers()] can someone help ?
@mustafasabrialtun9010
@mustafasabrialtun9010 4 жыл бұрын
thank youuuuuu !!! so glad that I have you
@muhammadharis6176
@muhammadharis6176 2 жыл бұрын
here you using your label images to test can it work without labeled one for example we give image without labelling and check weather it works or not ?
@luqmansen
@luqmansen 4 жыл бұрын
Great tutorial, many thanks!!
@clotildamariamathias7416
@clotildamariamathias7416 2 жыл бұрын
After training no files in drive are created
@aditikhandewale8755
@aditikhandewale8755 4 жыл бұрын
i have installed opencv still getting these error Traceback (most recent call last): File "C:/Users/Aditi Khandewale/yolo_object_detection.py", line 1, in import cv2 ModuleNotFoundError: No module named 'cv2'
@akshatpande1649
@akshatpande1649 4 жыл бұрын
just change "import cv2 "to "from cv2 import cv2"
@srivatsan804
@srivatsan804 4 жыл бұрын
Make sure you execute it in the command line as python3 and then the name of the file rather than python
@prs16265
@prs16265 4 жыл бұрын
You earned my subscription. Thanks.
@JackJGX
@JackJGX 4 жыл бұрын
Hey Pysource! Love your videos man. Would it be possible for you to edit and upload an edited version of the Train_Yolov3.ipynb script to allow for multiple classes rather than just one? I was looking at the script trying to figure it out myself but I couldn't work it out. It would be much appreciated.
@manojrajsr6001
@manojrajsr6001 4 жыл бұрын
you told that time limit for that online gpu is 12 hours? is it 12 hours for that account or 12 hours for that project? (ie,) can i reupload the files after 12 hours with the same gmail account?
@tyty21315
@tyty21315 4 жыл бұрын
you can reupload after 12 hours im sure
@rbr1344
@rbr1344 4 жыл бұрын
Nice video loved ..and excellent explanation
@hanishahzada230
@hanishahzada230 3 жыл бұрын
unable to find colab notebook on your blog
@softwarebox9639
@softwarebox9639 3 жыл бұрын
same here
@harshinivenkataraman5185
@harshinivenkataraman5185 4 жыл бұрын
This is amazing. Thanks a ton !!
@vipingautam9501
@vipingautam9501 2 жыл бұрын
Hi Sergio, Thanks for the tutorial. I have a question is the process same for yolov4 ?
@alpenapple
@alpenapple 2 жыл бұрын
you are the best!!! thank you again!!!
@sysadmin9396
@sysadmin9396 3 жыл бұрын
Hello, Is it possible to train my own dataset, and use a web cam to run detections as well as extract class information form the detected objects? For example, I want to create a data set of cards.. train yolo to recognize the cards and once a card is recognized be able to pass that recognized object to another function?
@pysource-com
@pysource-com 3 жыл бұрын
Hi Luis, yes it's possible to do that. Once you detect the object, you can apply any function you want using python.
@sysadmin9396
@sysadmin9396 3 жыл бұрын
Pysource Awesome. Do you have a course that I can buy/watch that will point me in the right direction to help me achieve my goal mentioned above?
@pysource-com
@pysource-com 3 жыл бұрын
@@sysadmin9396 Hi Luis, yes, I have an object detection course (Opencv & Deep learning) which will help you to achieve that: pysource.com/object-detection-opencv-deep-learning-video-course/
@dwiadityah3065
@dwiadityah3065 4 жыл бұрын
Thank u sir, i hope you make tutorial more than 1 object detection.
@m.pavankalyan2650
@m.pavankalyan2650 Жыл бұрын
I am gonna try this , I hope at least this tutorial helps me
@differentperspective1000
@differentperspective1000 4 жыл бұрын
scores = detection[5:] why we did this and why we multiply the width center_x = int(detection[0] * width) ?
@vamsikrishna-qc2xg
@vamsikrishna-qc2xg 2 жыл бұрын
Great video! Can we take input as a video rather than an image and work the same way?
@godwingeorgethekkanath
@godwingeorgethekkanath 4 жыл бұрын
This is great💯. I really appreciate your work👏.Can we use coco dataset and custom trained models simultaneously?
@aouamchaimae6248
@aouamchaimae6248 4 жыл бұрын
Same question !
@captainezzy3870
@captainezzy3870 4 жыл бұрын
with my experience. the coco works with xml files and the yolo with txt
@wishalarshad5117
@wishalarshad5117 3 жыл бұрын
Same question. Please let me know if you have found a way to do that
@MagicNutza
@MagicNutza 4 жыл бұрын
hi can you help me fix this problem on pycharm when I ran the code it has an error that show ModuleNotFoundError: No module named 'cv2' I am already done pip install opencv-python but it still has this error
@tahashahid5429
@tahashahid5429 3 жыл бұрын
you might be using python3. try "pip3 install opencv-python" or "pip3 install opencv-contrib-python"
@coccosapiens
@coccosapiens 2 жыл бұрын
@Abdul Wajid already tried still not working :(
@immalegit0
@immalegit0 Жыл бұрын
Hello sir, may I ask does using raspberry pi 4 model B 8gb is enough to make the same mechanism but using it for detecting cats only.
@Viral-4PM
@Viral-4PM Жыл бұрын
Which image size should be downloaded from Google if we train yolov5. Or we can download random image sizes . Plz suggest me
@madeandika6410
@madeandika6410 4 жыл бұрын
is there any way on how to put the training result on a graph?
@fraterdem2738
@fraterdem2738 2 жыл бұрын
I did all the instructions but the steps progress very slowly throughout the training. I also adjusted the GPU settings in Colab. What should I do to fix this problem?
@sukasukadika8811
@sukasukadika8811 2 жыл бұрын
i cannt find the model weight at my drive yolov3 after training session, how to solve it?
@pratyoshsahoo1608
@pratyoshsahoo1608 2 жыл бұрын
same error....how to solve ?????
@godlysunny1896
@godlysunny1896 3 жыл бұрын
Thankyou for this! Can you post a code snippet for linking this to a live video feed such as a webcam or drone feed?
@sohailawan77
@sohailawan77 4 жыл бұрын
Hi,thanks alot for such awesome tutorial,I want to ask one thing that if I want to train Yolov3-tiny what changes I have to made to train my custom model.waiting for your reply.
@ahmednacerbabahammou7814
@ahmednacerbabahammou7814 4 жыл бұрын
hi, did you find solution ?
@sureshkumar0707
@sureshkumar0707 4 жыл бұрын
I do not find the 2 weight files in my yolov3 folder in my drive ? The Training is not also performed in my program. I followed the same, I changed the Class name from Koala to Apple, Remaining all the things are same. [yolo] params: iou loss: mse (2), iou_norm: 0.75, cls_norm: 1.00, scale_x_y: 1.00 Total BFLOPS 65.304 avg_outputs = 516723 Allocate additional workspace_size = 12.46 MB Loading weights from darknet53.conv.74... seen 64, trained: 0 K-images (0 Kilo-batches_64) Done! Loaded 75 layers from weights-file Learning Rate: 0.001, Momentum: 0.9, Decay: 0.0005 Resizing, random_coef = 1.40 608 x 608 Create 6 permanent cpu-threads
@arjunpj2623
@arjunpj2623 4 жыл бұрын
same issue here , i tried to change the directory , still the same issue
@pysource-com
@pysource-com 4 жыл бұрын
Hi Suresh, "Create 6 permanent cpu-threads" the last line of the output is saying "Create 6 cpu-threads", this most likely means that you didn't activate the GPU on your nootebook. That might be the problem, check carefully the video tutorial, I explain how to activate the GPU
@MrFreechelsea
@MrFreechelsea 4 жыл бұрын
@@pysource-com I followed the tutorial and already activate the GPU on my notebook, but still faced the same error. Any advice?
Lehanga 🤣 #comedy #funny
00:31
Micky Makeover
Рет қаралды 26 МЛН
路飞太过分了,自己游泳。#海贼王#路飞
00:28
路飞与唐舞桐
Рет қаралды 42 МЛН
Я не голоден
01:00
К-Media
Рет қаралды 10 МЛН
Object Tracking with Opencv and Python
30:03
Pysource
Рет қаралды 604 М.
how to train YOLO v3, v4 for custom objects detection | using colab free GPU
35:34
When Maths Meet Coding
Рет қаралды 171 М.
Object Tracking from scratch with OpenCV and Python
1:00:13
Pysource
Рет қаралды 246 М.
YOLOv8: How to Train for Object Detection on a Custom Dataset
20:31
How I Made AI Assistants Do My Work For Me: CrewAI
19:21
Maya Akim
Рет қаралды 791 М.
YOLOv5 training with custom data
20:29
SoftwaresAI
Рет қаралды 417 М.