Converting Symbol Parameters (ND-Arrays) To .params

Hey there,

I do have a Network which is working completely fine. But I Need to have the .params file for loading it into OpenVINO. I currently have three files:

  • The JSON Symbol file
  • The ND-Array with the weights
  • And an auxiliary file

To get a result I just load these into an executor and give it an Input

OpenVino is only able to except the single .params file which for my understanding is a Gluon specific Format.

How am I able to convert the Symbol Logic to Gluon so that I can Export it to the .params file?

Thanks in Advance

Marcus

You can load the symbol files into gluon with gluon.SymbolBlock and then you can create a single params file from the symbolBlock with save_parameters

1 Like