-
-
他的博客里只写了train的脚本,请问您有test的脚本么 或者您是怎么做前向传播的?
-
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) ?
-
https://github.com/eriklindernoren/PyTorch-GAN/blob/36d3c77e5ff20ebe0aeefd322326a134a279b93e/implementations/acgan/acgan.py#L113
As stated here:
https://pytorch.org/docs/stable/generated/torch.nn…
-
I try your code in two ways in COCO2014 dataset,
1)in ultralytics/yolov3 branche , use cfg/yolov3-tiny-ours.cfg, i can reach 38.70% map, but I use "python3 ann_to_snn.py xx", yolov3-tiny-our…
-
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…
-
-
The error is:
RuntimeError: shape '[42, 256, 1, 1]' is invalid for input of size 10751.
Can you help me?
-
I am confused about what the model should be outputting by the model here: https://github.com/eriklindernoren/PyTorch-YOLOv3/blob/47b7c912877ca69db35b8af3a38d6522681b3bb3/detect.py#L77
I would expe…
-
Hii mate thank u for sharing this implementation it's really nice as a beginner.
during my cracking to your code, I didn't get it, normally u output the model as one-hot encoded but in y_batch of t…