当前位置: 首页>>代码示例>>Python>>正文


Python ELM.error方法代码示例

本文整理汇总了Python中hpelm.ELM.error方法的典型用法代码示例。如果您正苦于以下问题:Python ELM.error方法的具体用法?Python ELM.error怎么用?Python ELM.error使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在hpelm.ELM的用法示例。


在下文中一共展示了ELM.error方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_MultilabelError_CorrectWithMultipleClasses

# 需要导入模块: from hpelm import ELM [as 别名]
# 或者: from hpelm.ELM import error [as 别名]
 def test_MultilabelError_CorrectWithMultipleClasses(self):
     T = np.zeros((100, 5))
     T[:, 0] = 1
     Y = np.zeros((100, 5))
     Y[:, 1] = 1
     model = ELM(1, 5, classification='ml')
     self.assertEqual(0.4, model.error(T, Y))
开发者ID:akusok,项目名称:hpelm,代码行数:9,代码来源:unittest_elm.py

示例2: test_RegressionError_Works

# 需要导入模块: from hpelm import ELM [as 别名]
# 或者: from hpelm.ELM import error [as 别名]
 def test_RegressionError_Works(self):
     T = np.array([1, 2, 3])
     Y = np.array([1.1, 2.2, 3.3])
     err1 = np.mean((T - Y) ** 2)
     elm = ELM(1, 1)
     e = elm.error(T, Y)
     np.testing.assert_allclose(e, err1)
开发者ID:IstanbulBoy,项目名称:hpelm,代码行数:9,代码来源:test_correctness.py

示例3: test_MultiLabelClassError_Works

# 需要导入模块: from hpelm import ELM [as 别名]
# 或者: from hpelm.ELM import error [as 别名]
 def test_MultiLabelClassError_Works(self):
     X = np.array([1, 2, 3])
     T = np.array([[0, 1], [1, 1], [1, 0]])
     Y = np.array([[0.4, 0.6], [0.8, 0.6], [1, 1]])
     elm = ELM(1, 2, classification="ml")
     elm.add_neurons(1, "lin")
     e = elm.error(T, Y)
     np.testing.assert_allclose(e, 1.0 / 6)
开发者ID:IstanbulBoy,项目名称:hpelm,代码行数:10,代码来源:test_correctness.py

示例4: test_WeightedClassError_Works

# 需要导入模块: from hpelm import ELM [as 别名]
# 或者: from hpelm.ELM import error [as 别名]
 def test_WeightedClassError_Works(self):
     T = np.array([[0, 1], [0, 1], [1, 0]])
     Y = np.array([[0, 1], [0.4, 0.6], [0, 1]])
     # here class 0 is totally incorrect, and class 1 is totally correct
     w = (9, 1)
     elm = ELM(1, 2, classification="wc", w=w)
     elm.add_neurons(1, "lin")
     e = elm.error(T, Y)
     np.testing.assert_allclose(e, 0.9)
开发者ID:IstanbulBoy,项目名称:hpelm,代码行数:11,代码来源:test_correctness.py

示例5: build_ELM_encoder

# 需要导入模块: from hpelm import ELM [as 别名]
# 或者: from hpelm.ELM import error [as 别名]
def build_ELM_encoder(xinput, target, num_neurons):


    elm = ELM(xinput.shape[1], target.shape[1])
    elm.add_neurons(num_neurons, "sigm")
    elm.add_neurons(num_neurons, "lin")
    #elm.add_neurons(num_neurons, "rbf_l1")
    elm.train(xinput, target, "r")
    ypred = elm.predict(xinput)
    print "mse error", elm.error(ypred, target)
    return elm, ypred
开发者ID:btekgit,项目名称:mitosisdetection,代码行数:13,代码来源:elmTest.py


注:本文中的hpelm.ELM.error方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。