moein-shariatnia/OpenAI-CLIP

difference in config parameters in notebook vs config

nahidalam opened this issue · 0 comments

In your config.py you have https://github.com/moein-shariatnia/OpenAI-CLIP/blob/master/config.py#L22-L23

pretrained = False # for both image encoder and text encoder
trainable = False # for both image encoder and text encoder

But in your notebook you have

pretrained = True # for both image encoder and text encoder
trainable = True # for both image encoder and text encoder

Can you please explain?