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


Python SomTestTemplates.templateTestAwardNeurons方法代碼示例

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


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

示例1: testAutostopFourNeuronsSquareClustersByCore

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testAutostopFourNeuronsSquareClustersByCore(self):
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE5, 2, 2, 100, [15, 15, 15, 15], True, True)
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE5, 1, 4, 100, [15, 15, 15, 15], True, True)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:5,代碼來源:it_som.py

示例2: testOneDimensionSampleSimple7ClusterByCore

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testOneDimensionSampleSimple7ClusterByCore(self):
     parameters = som_parameters()
     parameters.init_type = type_init.random_surface
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE7, 2, 1, 100, [10, 10], True, True, parameters)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:6,代碼來源:it_som.py

示例3: testTwoNeuronsTwoDiamondsClusters

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testTwoNeuronsTwoDiamondsClusters(self):
     SomTestTemplates.templateTestAwardNeurons(FCPS_SAMPLES.SAMPLE_TWO_DIAMONDS, 1, 2, 100, [400, 400], False, False)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:4,代碼來源:ut_som.py

示例4: testAutostopFiveNeuronsFiveClustersByCore

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testAutostopFiveNeuronsFiveClustersByCore(self):
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE4, 1, 5, 100, [15, 15, 15, 15, 15], True, True)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:4,代碼來源:it_som.py

示例5: testFourNeuronsFourClustersByCore

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testFourNeuronsFourClustersByCore(self):
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE3, 1, 4, 100, [10, 10, 10, 30], False, True)
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE3, 2, 2, 100, [10, 10, 10, 30], False, True)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:5,代碼來源:it_som.py

示例6: testAutostopSevenNeuronsHeptaClustersByCore

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testAutostopSevenNeuronsHeptaClustersByCore(self):
     SomTestTemplates.templateTestAwardNeurons(FCPS_SAMPLES.SAMPLE_HEPTA, 1, 7, 100, [30, 30, 30, 30, 30, 30, 32], True, True)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:4,代碼來源:it_som.py

示例7: testThreeNeuronsThreeClusters

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testThreeNeuronsThreeClusters(self):
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE2, 1, 3, 100, [5, 8, 10], False, False)
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE2, 3, 1, 100, [5, 8, 10], False, False)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:5,代碼來源:ut_som.py

示例8: testAutostopTwoNeuronsTwoClustersByCoreStoreLoad

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testAutostopTwoNeuronsTwoClustersByCoreStoreLoad(self):
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE1, 1, 2, 100, [5, 5], True, True, store_load=True)
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE1, 2, 1, 100, [5, 5], True, True, store_load=True)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:5,代碼來源:it_som.py

示例9: testTwoNeuronsTwoClustersStoreLoad

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testTwoNeuronsTwoClustersStoreLoad(self):
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE1, 1, 2, 100, [5, 5], False, False, store_load=True)
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE1, 2, 1, 100, [5, 5], False, False, store_load=True)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:5,代碼來源:ut_som.py

示例10: testAutostopTwoNeuronsTwoClusters

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testAutostopTwoNeuronsTwoClusters(self):
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE1, 1, 2, 100, [5, 5], True, False)
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE1, 2, 1, 100, [5, 5], True, False)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:5,代碼來源:ut_som.py

示例11: testHighEpochs

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testHighEpochs(self):
     epochs = 1000
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE1, 1, 2, epochs, [5, 5], False, False)
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE3, 2, 2, epochs, [10, 10, 10, 30], False, False)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:6,代碼來源:ut_som.py

示例12: testFourNeuronsSquareClusters

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testFourNeuronsSquareClusters(self):
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE5, 2, 2, 100, [15, 15, 15, 15], False, False)
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE5, 1, 4, 100, [15, 15, 15, 15], False, False)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:5,代碼來源:ut_som.py

示例13: testFiveNeuronsFiveClusters

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testFiveNeuronsFiveClusters(self):
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE4, 1, 5, 100, [15, 15, 15, 15, 15], False, False)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:4,代碼來源:ut_som.py

示例14: testProcessingWhenLibraryCoreCorrupted

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testProcessingWhenLibraryCoreCorrupted(self):
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE1, 1, 2, 100, [5, 5], False, True)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:4,代碼來源:it_som.py

示例15: testAutostopFourNeuronsFourClusters

# 需要導入模塊: from pyclustering.nnet.tests.som_templates import SomTestTemplates [as 別名]
# 或者: from pyclustering.nnet.tests.som_templates.SomTestTemplates import templateTestAwardNeurons [as 別名]
 def testAutostopFourNeuronsFourClusters(self):
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE3, 1, 4, 100, [10, 10, 10, 30], True, False)
     SomTestTemplates.templateTestAwardNeurons(SIMPLE_SAMPLES.SAMPLE_SIMPLE3, 2, 2, 100, [10, 10, 10, 30], True, False)
開發者ID:annoviko,項目名稱:pyclustering,代碼行數:5,代碼來源:ut_som.py


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