-
Notifications
You must be signed in to change notification settings - Fork 211
ValueError while finetuning #147
Comments
Hi @Zumbalamambo, this is because you are freezing the backbone (resnet18 here), hence the optimizer receives an empty parameter list while finetuning. A couple of points to note, the default epoch at which it unfreezes in the embedder = ImageEmbedder(backbone="resnet18", embedding_dim=1024) |
@kaushikb11 thank you! Is it possible to increase the input size of the |
@Zumbalamambo What do you mean by input size of the |
@kaushikb11 thank you! I have one another doubt, how do you determine the value of
|
Hi @Zumbalamambo, I have patched a fix in PR #154. Thanks! |
@kaushikb11 thank you! :) May I know how I can apply the latest fix? I have installed lightning-flash using pip |
Hi @Zumbalamambo, follow the below commands :)
|
I'm using the following code to fine-tune embedder,
Unfortunately it throws the following error,
The text was updated successfully, but these errors were encountered: