示例#1
0
文件: debug.py 项目: iyangming/CNTK
def set_computation_network_trace_level(level):
    '''
    Set trace level to the computation network. Currently supported values:
       0        : turn off trace
       1        : output nodes' dimensions and some other static info
       1000     : output each node's abs sum of elements in its value matrix for every forward/backward
       1000000  : output each node's full matrix for every forward/backward

    Args:
        level (int): trace level
    '''
    cntk_py.set_computation_network_trace_level(level)
示例#2
0
def set_computation_network_trace_level(level):
    '''
    Set trace level to the computation network. Currently supported values:
       0        : turn off trace
       1        : output nodes' dimensions and some other static info
       1000     : output each node's abs sum of elements in its value matrix for every forward/backward
       1000000  : output each node's full matrix for every forward/backward

    Args:
        level (int): trace level
    '''
    cntk_py.set_computation_network_trace_level(level)