-
Hey, I modified the eval script a bit to run some predictions and test the FPS a bit.
I was getting much lower FPS than what is quoted in https://github.com/eriklindernoren/PyTorch-YOLOv3 so I deci…
joaqo updated
6 years ago
-
Hi! Sorry for the basic question but I'm a bit of a beginner and I'm trying to understand how the model is set up. I have a 2-part question:
First, what is the reason for defining a model sequenti…
-
I wonder why it's `d_loss = 0.5 * np.add(d_loss_real, d_loss_fake)` and not `d_loss = np.add(d_loss_real, d_loss_fake)`?
https://github.com/eriklindernoren/Keras-GAN/blob/master/gan/gan.py#L123
-
我自己补充了一下缺失的prune_util.py来训练,但是发现non_max_suppression计算的特别慢,计算到99%的时候死循环,也就是detections.size(0)一直保持不变。请问您有遇到过这个问题么?
eriklindernoren工程下有人讨论过这个问题,但是没有什么解决办法。
-
-
1.I have trained yolov3 to detect person(only one class) in pytorch using project: [https://github.com/eriklindernoren/PyTorch-YOLOv3](url)
2.The trained paraments is .pth format, and I convert it …
-
grad_w = -(y - y_pred).dot(X) + self.regularization.grad(self.w)
in regression.py
should it be grad_w = -(y - y_pred).dot(X) * (1/training_size) + self.regularization.grad(self.w) ?
-
Hey everyone,
I trained the YOLO network by following all the steps from the link
https://github.com/AlexeyAB/darknet#how-to-train-to-detect-your-custom-objects
What is the meaning of negative valu…
-
Hello eriklindernoren :)
I'm undergraduate student major in computer science
Before mentioning what I need, firstly your pix2pix code was very helpful for me.
I used your training code(pix2pix.py) …
-
First of all thanks for the great reference, you've been created and it performs well in its current format.
But, Is it acceptable to use covariance matrices instead of scatter matrices in LDA?
sh…