Tag Archives: Training yolov5 Error

[Solved] Training yolov5 Error: attributeerror: can get attribute sppf on Module

Problem Description:

There was a problem running the yolov5-train.py file:

Attributeerror: cant get attribute sppf on module models.common… (followed by file path)

Solution:

1. Double click to open the common.py file:

2. Add code:

import warnings

class SPPF(nn.Module):
    # Spatial Pyramid Pooling - Fast (SPPF) layer for YOLOv5 by Glenn Jocher
    def __init__(self, c1, c2, k=5):  # equivalent to SPP(k=(5, 9, 13))
        super().__init__()
        c_ = c1 // 2  # hidden channels
        self.cv1 = Conv(c1, c_, 1, 1)
        self.cv2 = Conv(c_ * 4, c2, 1, 1)
        self.m = nn.MaxPool2d(kernel_size=k, stride=1, padding=k // 2)

    def forward(self, x):
        x = self.cv1(x)
        with warnings.catch_warnings():
            warnings.simplefilter('ignore')  # suppress torch 1.9.0 max_pool2d() warning
            y1 = self.m(x)
            y2 = self.m(y1)
            return self.cv2(torch.cat([x, y1, y2, self.m(y2)], 1))


Copy and paste it directly into the common.py file.
Tips: Put import warnings on it!