inceptionnext
inceptionnext copied to clipboard
InceptionNeXt: When Inception Meets ConvNeXt (CVPR 2024)
If I use inceptionnext as my backbone, need I do some special process?
When I run thre code below: model = inceptionnext_base(pretrained=True) inputs = torch.randn((1, 3, 640, 640)) for i in model(inputs): print(i.size()) RuntimeError: Error(s) in loading state_dict for MetaNeXt: Unexpected key(s) in...
尊敬的作者,您好,我是一个研0的新生,老师让我用您的代码去实现特征提取和故障分类,但是我下载您的代码在pycharm上运行时发现有错误,错误如下所示,请问这种错误应该如何解决 D:\anaconda3\envs\pytorch\python.exe F:\算法总结\特征提取\InceptionNext\inceptionnext-main\models\inceptionnext.py Traceback (most recent call last): File "F:\算法总结\特征提取\InceptionNext\inceptionnext-main\models\inceptionnext.py", line 12, in from timm.data import IMAGENET_DEFAULT_MEAN, IMAGENET_DEFAULT_STD File "D:\anaconda3\envs\pytorch\Lib\site-packages\timm\__init__.py", line 2, in from .models import create_model, list_models, is_model, list_modules,...
May I ask if the relevant segmentation and detection code can be provided?I made some modifications to the segmentation according to the format of the poolformer, but the results were...
我看代码感觉其是一个整体架构,不像是即插即用的模块
Parameter not found in model: epoch Parameter not found in model: arch Parameter not found in model: state_dict Parameter not found in model: optimizer Parameter not found in model: version...
Hello, I tried to use inceptionnext as the encoder, but the experiment results are not ideal ( The performance is even worse than convnext, I think maybe I made a...
Great job on your work! I have a small suggestion regarding the code in inceptionnext.py. It would be more convenient if the line "x = x.mean((2, 3)) # global average...