hoangdung3498
hoangdung3498
> Why when importing OpenCVSharp in the .NET Framework class library, it prompts DllNotFoundException: Unable to load DLL "OpenCvSharpExtern": The specified module cannot be found, but I have downloaded OpenCvSharpExtern.dll....
> ```python > for param in model.parameters(): > param.requires_grad = True > ``` it still error when i add this
> This issue may be caused by the FrozenBN. Could you please check whether it supports Autograd? Class for FrozenBN is : ``` class FrozenBatchNorm2d(nn.Module): """ BatchNorm2d where the batch...
@VainF FrozenBatchnorm's parameters have defined by register_buffer, so they don't update in optimizer.step(), they fixed from init as well as they have .grad = None. So what i can do...
@VainF Can you help me ???
> Thank you for this awsome development of Yolo. I fine-tuned YoloX on custom dataset in coco format, now I want to evaluate the best model on my test dataset....