mobile_cv/arch/fbnet_v2/irf_spade.py [25:51]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    in_channels,
    out_channels,
    expansion=6,
    kernel_size=3,
    stride=1,
    conv_args="conv",
    bn_args="bn",
    relu_args="relu",
    res_conn_args="default",
    upsample_args="default",
    spade_args=None,
    **kwargs,
):
    conv_args = hp.unify_args(conv_args)
    conv_args = _get_tuple_left(conv_args, "conv")

    relu_args = hp.unify_args(relu_args)
    relu_args = _get_tuple_left(relu_args, "relu")

    res_conn_args = hp.unify_args(res_conn_args)
    res_conn_args = _get_tuple_left(res_conn_args, "residual_connect")

    upsample_args = hp.unify_args(upsample_args)
    upsample_args = _get_tuple_left(upsample_args, "upsample")

    bn_args = hp.unify_args(bn_args)
    bn_args_normal = _get_tuple_left(bn_args, "bn")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



mobile_cv/arch/fbnet_v2/irf_spade.py [80:106]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    in_channels,
    out_channels,
    expansion=6,
    kernel_size=3,
    stride=1,
    conv_args="conv",
    bn_args="bn",
    relu_args="relu",
    res_conn_args="default",
    upsample_args="default",
    spade_args=None,
    **kwargs,
):
    conv_args = hp.unify_args(conv_args)
    conv_args = _get_tuple_left(conv_args, "conv")

    relu_args = hp.unify_args(relu_args)
    relu_args = _get_tuple_left(relu_args, "relu")

    res_conn_args = hp.unify_args(res_conn_args)
    res_conn_args = _get_tuple_left(res_conn_args, "residual_connect")

    upsample_args = hp.unify_args(upsample_args)
    upsample_args = _get_tuple_left(upsample_args, "upsample")

    bn_args = hp.unify_args(bn_args)
    bn_args_normal = _get_tuple_left(bn_args, "bn")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



