Skip to content

dectect video with yolov4-tiny

so I trained a yolov4 tiny model and I predict perfectly on images with this command : and now I want to predict on video but I can manage to figure out the correct command. Answer To run detections on a video file run detector demo. In your case: !.darknet detector demo build/darknet/x64/cfg/custom-yolov4-ti…

django manytomany field inseting empty data

model view serializers error: It means dependents is not inserting Here I am trying to send nested data for my dependents(ManyToManyField) But, Getting above error while inserting data. Is there any way we can achive this ? Above is the data i am sending using post method. please have a look Answer

How to write correctly PyQT5 event function

How can I correctly write the event function to pass from one QLineEdit to another one by pressing the enter key? I know how to do that in this way: Working Example Now i want to understand how to do the same with this code (i think that the problem is with super() and init but i don’t know why).

how to use python to find the first not repeating character?

I am solving a problem: Given a string s consisting of small English letters, find and return the first instance of a non-repeating character in it. If there is no such character, return ‘_’. For example: s = “abacabad”, the output should be firstNotRepeatingCharacter(s) = ‘c&#82…