You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i have a SimClr codebase that makes use of resnet models using the import from pl_bolts.models.self_supervised.resnets import resnet18, resnet50
The code makes use of these resnets via the snippet resnet18(pretrained=False, first_conv=True, maxpool1=True, return_all_feature_maps=False)
For the current project problem i wished to make use of the source code from the source found in this repository source due to the need to change some of the parameters of the models directly
However on trying so i am getting error of first_conv and maxpool1 being parameters that do not exist. I couldn't find where these parameters are from searching the codebase or the internet.
Have they been removed due to a change in version? if so, can anyone direct me to the version that has these parameters?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi, i have a SimClr codebase that makes use of resnet models using the import
from pl_bolts.models.self_supervised.resnets import resnet18, resnet50
The code makes use of these resnets via the snippet
resnet18(pretrained=False, first_conv=True, maxpool1=True, return_all_feature_maps=False)
For the current project problem i wished to make use of the source code from the source found in this repository source due to the need to change some of the parameters of the models directly
However on trying so i am getting error of
first_conv
andmaxpool1
being parameters that do not exist. I couldn't find where these parameters are from searching the codebase or the internet.Have they been removed due to a change in version? if so, can anyone direct me to the version that has these parameters?
Beta Was this translation helpful? Give feedback.
All reactions