models/networks/model_profiling.py [81:92]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        module.n_macs = (
            ins[1]
            * outs[1]
            * module.kernel_size[0]
            * module.kernel_size[1]
            * outs[2]
            * outs[3]
            // module.groups
        ) * outs[0]
        module.n_params = get_params(module)
        module.n_seconds = run_forward(module, input)
        module.name = conv_module_name_filter(module.__repr__())
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



models/networks/model_profiling.py [94:105]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        module.n_macs = (
            ins[1]
            * outs[1]
            * module.kernel_size[0]
            * module.kernel_size[1]
            * outs[2]
            * outs[3]
            // module.groups
        ) * outs[0]
        module.n_params = get_params(module)
        module.n_seconds = run_forward(module, input)
        module.name = conv_module_name_filter(module.__repr__())
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



