mxnet.symbol.Symbol.list_outputs¶
-
Symbol.
list_outputs
()[source]¶ Lists all the outputs in the symbol.
Example
>>> a = mx.sym.var('a') >>> b = mx.sym.var('b') >>> c = a + b >>> c.list_outputs() ['_plus12_output']
- Returns
List of all the outputs. For most symbols, this list contains only the name of this symbol. For symbol groups, this is a list with the names of all symbols in the group.
- Return type
list of str