當前位置: 首頁>>代碼示例>>Python>>正文


Python cntk.abs方法代碼示例

本文整理匯總了Python中cntk.abs方法的典型用法代碼示例。如果您正苦於以下問題:Python cntk.abs方法的具體用法?Python cntk.abs怎麽用?Python cntk.abs使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在cntk的用法示例。


在下文中一共展示了cntk.abs方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: SmoothL1Loss

# 需要導入模塊: import cntk [as 別名]
# 或者: from cntk import abs [as 別名]
def SmoothL1Loss(sigma, bbox_pred, bbox_targets, bbox_inside_weights, bbox_outside_weights):
    """
        From https://github.com/smallcorgi/Faster-RCNN_TF/blob/master/lib/fast_rcnn/train.py

        ResultLoss = outside_weights * SmoothL1(inside_weights * (bbox_pred - bbox_targets))
        SmoothL1(x) = 0.5 * (sigma * x)^2,    if |x| < 1 / sigma^2
                        |x| - 0.5 / sigma^2,    otherwise
    """
    sigma2 = sigma * sigma

    inside_mul_abs = C.abs(C.element_times(bbox_inside_weights, C.minus(bbox_pred, bbox_targets)))

    smooth_l1_sign = C.less(inside_mul_abs, 1.0 / sigma2)
    smooth_l1_option1 = C.element_times(C.element_times(inside_mul_abs, inside_mul_abs), 0.5 * sigma2)
    smooth_l1_option2 = C.minus(inside_mul_abs, 0.5 / sigma2)
    smooth_l1_result = C.plus(C.element_times(smooth_l1_option1, smooth_l1_sign),
                              C.element_times(smooth_l1_option2, C.minus(1.0, smooth_l1_sign)))

    return C.element_times(bbox_outside_weights, smooth_l1_result) 
開發者ID:karolzak,項目名稱:cntk-python-web-service-on-azure,代碼行數:21,代碼來源:cntk_smoothL1_loss.py

示例2: test_abs

# 需要導入模塊: import cntk [as 別名]
# 或者: from cntk import abs [as 別名]
def test_abs():
    assert_cntk_ngraph_array_equal(C.abs([-1, 1, -2, 3]))
    assert_cntk_ngraph_array_equal(C.abs([[1, -2], [3, -4]]))
    assert_cntk_ngraph_array_equal(C.abs([[[1, 2], [-3, 4]], [[1, -2], [3, 4]]])) 
開發者ID:NervanaSystems,項目名稱:ngraph-python,代碼行數:6,代碼來源:test_ops_unary.py

示例3: abs

# 需要導入模塊: import cntk [as 別名]
# 或者: from cntk import abs [as 別名]
def abs(x):
    return C.abs(x) 
開發者ID:Relph1119,項目名稱:GraphicDesignPatternByPython,代碼行數:4,代碼來源:cntk_backend.py

示例4: sign

# 需要導入模塊: import cntk [as 別名]
# 或者: from cntk import abs [as 別名]
def sign(x):
    return x / C.abs(x) 
開發者ID:Relph1119,項目名稱:GraphicDesignPatternByPython,代碼行數:4,代碼來源:cntk_backend.py

示例5: softsign

# 需要導入模塊: import cntk [as 別名]
# 或者: from cntk import abs [as 別名]
def softsign(x):
    return x / (1 + C.abs(x)) 
開發者ID:Relph1119,項目名稱:GraphicDesignPatternByPython,代碼行數:4,代碼來源:cntk_backend.py

示例6: l1_reg_loss

# 需要導入模塊: import cntk [as 別名]
# 或者: from cntk import abs [as 別名]
def l1_reg_loss(output):
    # don't need C.abs(output), because output is already non-negative
    # use abs() if your desired output could be negative
    return C.reduce_mean(output)


#----------------------------------------
# create computational graph and learner
#---------------------------------------- 
開發者ID:haixpham,項目名稱:end2end_AU_speech,代碼行數:11,代碼來源:train_end2end.py


注:本文中的cntk.abs方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。