I have a trained model(layers = 2, rnn_size = 512), is there a tools convert it to another network topology (layers = 4, rnn_size = 1024)?
thanks!
I have a trained model(layers = 2, rnn_size = 512), is there a tools convert it to another network topology (layers = 4, rnn_size = 1024)?
thanks!
There is no such tool currently.
However, @Dakun experimented on this subject. Maybe he could share his findings and how he proceeded.
It’s not difficult to expand/convert from e.g. layers =2, rnn_size = 512 to layers = 4, rnn_size = 1024.
BTW, personally, I don’t think it is a good way to directly jump from 2512 to 41024.
It’s really big for 41024 network. Maybe you can start from 2512 to 4*512 for instance.
That will be much easier.
Thanks for your great answer!
Great post - I was thinking about this problem this morning