priteshgohil

Results 8 comments of priteshgohil
trafficstars

Same problem, I tried to change the .pth -> .weights But didn't help. I'm getting None result

Update: This worked for me `python detect.py --model_def config/yolov3-custom.cfg --weights_path checkpoints/yolov3_ckpt_100.pth --image_folder data/samples/ --class_path data/custom/classes.names `

Update: This worked for me python detect.py --model_def config/yolov3-custom.cfg --weights_path checkpoints/yolov3_ckpt_100.pth --image_folder data/samples/ --class_path data/custom/classes.names

Still not available. Then how can one compare the approach if every have different test split?

This error is caused because of unknown class name 'd00'. Make sure that you mention all the labels in class_names = (.....) and filter out other labels from your annotations....

Thank you for your response. Should this issue be converted to feature or should I close it?

This cubic Bézier curves are very interesting as someone implemented using matplotlib. https://stackoverflow.com/a/60401570/10451749 I will love to see this feature in Plotly. Thanks.

Json file is generally created by serializing your class object. For example you can see below code. ``` import json class MyData(object): def __init__(self, actions, duration, subset): self.actions = actions...