ThomasDelteil commented on issue #10512: [MXNET-309] [ONNX-MXNet] Model Metadata API
URL: https://github.com/apache/incubator-mxnet/pull/10512#issuecomment-380616005
@anirudhacharya
not sure, currently it looks like to find the input name you are doing this:
```
data_names = [graph_input for graph_input in sym.list_inputs()
if graph_input not in arg_params and graph_input not in aux_params]
print(data_names)
```
and that your new API would let it infer it automagically?
to replace this
```
net = gluon.nn.SymbolBlock(outputs=sym, inputs=mx.sym.var('gpu_0/data_0'))
```
with some deterministic API call?
The two tutorial I wrote would both need updating for model loading and datanames with
the new API
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
users@infra.apache.org
With regards,
Apache Git Services
|