-
Notifications
You must be signed in to change notification settings - Fork 305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to fine tune with different data, But getting dimensionality mismatched for tensor #18
Comments
Hi, |
@localminimum kindly help me to resolve this. |
It's not that the number of words and chars are different. tf.assign happens when the pretrained weights are loaded. It seems like you are trying to load a trained model where the character embeddings size is different to your current character embeddings size. Try training again from scratch with your new char embeddings. |
I want to train the pretrain model. I don't have enough data to train from
scratch. Kindly tell me if this is possible or not? . If yes, how?
…On Thu 3 May, 2018, 10:51 AM localminimum, ***@***.***> wrote:
It's not that the number of words and chars are different. tf.assign
happens when the pretrained weights are loaded.
It seems like you are trying to load a trained model where the character
embeddings size is different to your current character embeddings size. Try
training again from scratch with your new char embeddings.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#18 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ASkx2KTKM2-7WzIn1N8wYfk49fny6c9Wks5tupPMgaJpZM4TuXgQ>
.
|
You can just train the new character embeddings from scratch while using the pretrained weights for other weights. But I don't have that feature implemented here. You might have to manually allocate each weight. |
Hi! I'm new to tensorflow, and while I understand that I need to manually allocate weights to layers for the non-character embedding layers (it seems that word embeddings are non-trainable). Also, I don't understand how to restore only selected portions from checkpoint. It'll be really helpful if you could elaborate on what I need to do (or sample code) |
@brojokm and @localminimum were you able to resolve this. |
I am getting the following error while trying to fine tune
The text was updated successfully, but these errors were encountered: