help wantedquestion
Description
Hi everyone,
Creating a byte[] from a NetParameter can be done as follows :
byte[] byteModel = new byte[netParameter.ByteSize()];
netParameter.SerializeWithCachedSizesToArray(byteModel);
How can I do the other way? Copy weights from byte[] to NetParameter? I have tried all the functions with no success...
Thank you very much in advance,