Closed lopho closed 2 years ago
@lopho hmm, yeah I had that config locally at one point as I noticed it was missing but seems to have got lost in the shuffle. FYI the 'openai' pretrained tag obtains the model config from the jit scripted checkpoint and that's why it works without a json config... I'll add one soon
Instantiating a RN50x64 model without pretrained weights fails.
With
pretrained
succeeds.Calling
open_clip.get_model_config('RN50x64')
returnsNone
.I would expect
create_model
to instantiate a randomly initialized model, andget_model_config
to return the model config forRN50x64
.