Custom Object Detection Pytorch
Object Detection Finetuning Tutorial multiclass with own Data
PyTorch Newbie - Trying to learn Object Detection Structure
How do I start training an object detection model in PyTorch
Videos
Hello all!
I'm a newbie to PyTorch, and just took a beginners course on all things PyTorch. However, this course did not have a walkthrough of the basic structure of object detection models. I like to think I understand the basics of PyTorch, but I cannot find a tutorial for building an object detection model from scratch (with bounding boxes, etc..).
Here is my forward pass of a very simple "test model", which I know is wrong, but maybe someone can guide me in the right direction:
def forward(self, x: torch.Tensor):
x = self.input_layer(x)
x = self.bottleneck_1(x)
x = self.bottleneck_2(x)
x = self.transition_layer_1(x)
x = self.bottleneck_3(x)
x = self.bottleneck_4(x)
x = self.transition_layer_2(x)
features = self.pooling(x)
features = features.view(features.shape[0], -1)
bboxes = self.regressor(features)
class_logits = self.classifier(features)
Any help or resources to start learning about object detection would be much appreciated.