YOLOR on a Custom Dataset | Object detection using YOLOR

  Рет қаралды 7,566

Code With Aarohi

Code With Aarohi

Күн бұрын

I will show you how to perform object detection using YOLOR which stands for You Only Learn One Representation.
Github: github.com/Aar...
Yolor is a new object detection algorithm and released in may 2021,
If you will see the performance comparison of yoloR with other models in their official paper. You will get to know that yoloR is the fastest object detection model .
YoloR is written in both (tensorflow & torch). Today I will show you how to run yolor using pytorch
Yolor has different model variations including, yolor-p6(small), yolor-w6(medium), yolor-d6(large), yolor-e6(extra-large)
If you have any queries, you can comment or you can mail me at aarohisingla1987@gmail.com
Join this channel to get access to perks:
/ @codewithaarohi
#YOLOR
#ObjectDetection
#Yolo
#ComputerVision

Пікірлер: 64
@soufianechehboune4811
@soufianechehboune4811 2 жыл бұрын
I would say just one thing : Thank you Aarouhi you save my life
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
Glad my video helped you!
@soufianechehboune4811
@soufianechehboune4811 2 жыл бұрын
@@CodeWithAarohi actually all your videos helps me to implement all different series of YOLO... I can't found words my gratitude to you! Thank you so much again 💗😊
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
@@soufianechehboune4811 Glad to hear that 😊
@preethamdp729
@preethamdp729 2 жыл бұрын
your github link throwing 404 error
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
Try this github.com/AarohiSingla/Object-Detection-Using-YOLOR
@utkarshtripathi9118
@utkarshtripathi9118 2 жыл бұрын
Ossm, Exellent, Best of the Bset
@pifordtechnologiespvtltd5698
@pifordtechnologiespvtltd5698 7 ай бұрын
Keep it up 👍
@CodeWithAarohi
@CodeWithAarohi 6 ай бұрын
Thanks!
@SuperJude67
@SuperJude67 2 жыл бұрын
Great tutorial, you are awesome lecturer
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
Glad it was helpful!
@MrIWANTCHICKEN
@MrIWANTCHICKEN 2 жыл бұрын
Easy tutorial. Is it possible to view the progress of the training eg: like chart/graph in yolor? what is the method to do that
@kishoreg8835
@kishoreg8835 2 жыл бұрын
mam you made a lot of object detection tutorials. but which is best for real life project which can be made into a product for a company to sell. it should be very very fast and accurate. you have to reply to this question mam. it's a genuine question.
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
As you said- I have to reply to this question, So here is my reply - It always depend upon the type of industry (Medical, agriculture, security etc) where you are using this Object detection. Also the resources which you are using to run the Object detection. And then check if task is to detect smaller objects or larger objects. These kind of parameters are helpful before choosing a suitable Object detection model. I will try to make a video which will explain this topic in detail :)
@colorless5006
@colorless5006 2 жыл бұрын
thanks for your effort and time. which annotation software is used? does it matter which annotation tool should be used?
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
I took this dataset from kaggle but you can annotate your images using labelImg tool
@preethamdp729
@preethamdp729 2 жыл бұрын
does Slicing Aided Hyper Inference (SAHI) library supports yoloR?
@haminlim5272
@haminlim5272 2 жыл бұрын
Your videos are amazing! Is there a way to do the real-time detection? Especially with the rtsp uri. Thank you so much!
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
I think we can use it like --source rtsp://111.123.122.1:5050/stream1 but not sure
@haminlim5272
@haminlim5272 2 жыл бұрын
@@CodeWithAarohi Thank you so much! I also watched your Yolov7 official version and trying to work on it. I will leave a comment on that video If I have any questions!
@hariomdubey03
@hariomdubey03 2 жыл бұрын
Nice video, Thanks
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
Welcome
@eranfeit
@eranfeit 9 ай бұрын
Hi, Can you share a link to the traffic dataset ? Eran
@CodeWithAarohi
@CodeWithAarohi 9 ай бұрын
www.kaggle.com/datasets/valentynsichkar/traffic-signs-dataset-in-yolo-format
@nayoung32918
@nayoung32918 2 жыл бұрын
What is the difference between batch, width, height, and --batch-size, --img of the train command in the cfg file?
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
This is the train command and it has batch size and image: (batch size is the size of the batch and -img is the dimension of the image) python train.py --batch-size 8 --img 1280 1280 --data custom.yaml --cfg cfg/yolor_p6_custom.cfg --weights '' --device 0 --name yolor_p6 --hyp hyp.scratch.1280.yaml --epochs 300
@chrisber
@chrisber 2 жыл бұрын
Hey, thanks so much, this tutorial was EPIC! I'm trying to run my custom YOLOR on custom images which aren't square. My first question is, will I have to change the width and height in the .cfg file? I presumed that I would. So I changed the width and height in the .cfg file and then trained a model. So now that I just trained a model on non-square images, each image was 1952 wide by 960 high (each dimension is divisible by 32). My second question is; when running my trained model from the command line, how do I specify the second dimension parameter? As it only wants to accept one for some reason (implying that all images must be square). I keep getting the error "detect.py: error: unrecognized arguments: 960" Thanks for any help :)
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
Can you share the command you are using
@akbaraliotakhanov1221
@akbaraliotakhanov1221 2 жыл бұрын
Nice tutorial! Thanks for your effort. By the way github link is not found, could you reshare the link?
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
github.com/AarohiSingla/Object-Detection-Using-YOLOR
@AnjanaSivakumar
@AnjanaSivakumar 2 жыл бұрын
Thank you so much. Could you please do the same using YOLOX as well? Also please try to do it using google colab, that would be more helpful
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
Will try
@AnjanaSivakumar
@AnjanaSivakumar 2 жыл бұрын
@@CodeWithAarohi @Code With Aarohi Thank you ma'am. Is there any way I can contact you? I need some help for my MTech project.
@danb9393
@danb9393 2 жыл бұрын
I did same all the things that you did. but my model is not detect bouding box? what is the problem?
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
There are various reasons: 1-Maybe your model need more training. 2- Dataset is not proper. 3- Try to tune hyper parameters etc
@danb9393
@danb9393 2 жыл бұрын
@@CodeWithAarohi yes you right.. Thank you. When I did more training epoch I gave me detection. Thank you. your series very clear. Please make a video about YOLOX_custom_data too.
@Swearinbag
@Swearinbag 2 жыл бұрын
Is there a reason why we have to adjust the filters so specifically? :) Might be a stupid questions but I've seen this pop up quite a lot but can't seem to find a source as to why this happens...
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
Number of filters are decided by this method : (classes+5)3 . Suppose you have 4 classes then = (4+5)3 = 27
@Swearinbag
@Swearinbag 2 жыл бұрын
@@CodeWithAarohi Oh I understood that! But I meant why you add the 5 and then multiply the whole thing by 3
@darkmember727
@darkmember727 2 жыл бұрын
@@Swearinbag Detection is performed on 3 anchor boxes, and gives 5 output: cx, cy, w,h, prob.score + n classes
@amanharis1845
@amanharis1845 2 жыл бұрын
Ma'am can we run this program to detect objects on real time video ?
@warrior_1309
@warrior_1309 2 жыл бұрын
Just try to convert the model into onnx format and read it through opencv for real time inferencing.
@Kishi1969
@Kishi1969 2 жыл бұрын
Dear Ma, If i'm using classes like 6, means (classes + 5)= (6+5)3 right ? 33 right in filters?
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
Correct
@Kishi1969
@Kishi1969 2 жыл бұрын
@@CodeWithAarohi Thanks
@omaramini1670
@omaramini1670 2 жыл бұрын
Thanks for your effort. By the way github link is not found, could you reshare the link?
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
github.com/AarohiSingla/Object-Detection-Using-YOLOR
@RAZZKIRAN
@RAZZKIRAN 2 жыл бұрын
thank u madam,
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
Welcome 😊
@animators4126
@animators4126 2 жыл бұрын
can you please show me one of your label file, I converted mine with same name as image where I am keeping bbox values and class id but its not working
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
Content of 1 txt file : 1 0.5841911764705883 0.535625 0.030147058823529412 0.04375
@Kishi1969
@Kishi1969 2 жыл бұрын
Please How to check my GPU in my window 10 please?
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
You ca check from Task Manager in windows
@Kishi1969
@Kishi1969 2 жыл бұрын
@@CodeWithAarohi Thanks
@justusbieberstein6699
@justusbieberstein6699 2 жыл бұрын
What program do you use to annotate the images?
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
LabelIMG tool github.com/tzutalin/labelImg
@dariosantiago257
@dariosantiago257 2 жыл бұрын
do you know if i can run this model on jetson nano?
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
I never tried it but I think it will work as we can run different types of Neural Networks on it.
@utkarshtripathi9118
@utkarshtripathi9118 2 жыл бұрын
Mam, could you pleas make a video on how to deploy our model on web server . If Already is there any video pls Send me the link...........
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
kzbin.info/www/bejne/lXrUYoNnjN-SiLc
@andrewh5640
@andrewh5640 2 жыл бұрын
Very good
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
Thanks
@leandromontenegropinto6704
@leandromontenegropinto6704 2 жыл бұрын
Hey, nice video!! Do you have for google colab? Thanks
@CodeWithAarohi
@CodeWithAarohi 2 жыл бұрын
Sorry, no
YOLOv6 on Custom dataset | Object Detection
10:34
Code With Aarohi
Рет қаралды 14 М.
Object Detection Using YOLOv4-tiny  |  Part 1
27:29
Code With Aarohi
Рет қаралды 9 М.
From Small To Giant Pop Corn #katebrush #funny #shorts
00:17
Kate Brush
Рет қаралды 68 МЛН
Ozoda - Lada (Official Music Video)
06:07
Ozoda
Рет қаралды 7 МЛН
Миллионер | 1 - серия
34:31
Million Show
Рет қаралды 1,1 МЛН
Leaf Disease Detection using yolov5 | Object Detection
19:48
Code With Aarohi
Рет қаралды 30 М.
Object Detection Using YOLO v4 on Custom Dataset | Practical Implementation
1:01:36
YOLOv7 | Object Detection on Custom Dataset
13:18
Code With Aarohi
Рет қаралды 23 М.
How to Train YOLOv5 on a Custom Dataset
28:39
Roboflow
Рет қаралды 220 М.
Yolo v5 on Custom Dataset | Train and Test Yolov5 on Custom Dataset
22:20
2 Faster R-CNN | Object Detection Using Faster R-CNN
35:59
Code With Aarohi
Рет қаралды 51 М.
Train YOLO to detect a custom object (online with free GPU)
27:56
iPhone Standby mode dock, designed with @overwerk
0:27
Scott Yu-Jan
Рет қаралды 5 МЛН
Айфоны уже никто не покупает
0:49
iPhone 16 Vs S25 ultra💀
1:01
Skinnycomics
Рет қаралды 4,5 МЛН
What’s the best iPhone or Android?
0:48
Batyr White
Рет қаралды 7 МЛН