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
Getting below error while trying to train the finetuned (LoRA llama2) on forget set: ValueError: Target module Dropout(p=0.05, inplace=False) is not supported. Currently, only the following modules are supported: torch.nn.Linear, torch.nn.Embedding, torch.nn.Conv2d, transformers.pytorch_utils.Conv1D.
can you please help me with this?
The text was updated successfully, but these errors were encountered:
I thought it was a Python version issue, so I upgraded to 3.9, but the same error still occurs.
So I guess that if a Dropout layer is not inside a Conv2D or Linear sequential layer and instead exists independently outside the sequential layer, dropout layer is not converted to lora_dropout
Getting below error while trying to train the finetuned (LoRA llama2) on forget set:
ValueError: Target module Dropout(p=0.05, inplace=False) is not supported. Currently, only the following modules are supported:
torch.nn.Linear,
torch.nn.Embedding,
torch.nn.Conv2d,
transformers.pytorch_utils.Conv1D.
can you please help me with this?
The text was updated successfully, but these errors were encountered: