apepkuss opened a new issue #14650: How can I parse mxnet params file into plain text? URL: https://github.com/apache/incubator-mxnet/issues/14650 ## Description I'm trying to parse mxnet params file into plain text in Python without using mxnet or gluon APIs. I tried the following simple Python code, but the result is not plain string, but looks like this "... \xaa>\x0f\xed\x8e>\xaf!\x8f>g ... " How can I get plain string from the param file? Thanks a lot. ## Environment info (Required) Python = 3.6 ```python param_file = 'resnet-50-0000.params' with open(param_file, 'rb') as f: net_params = f.read() ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
