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


Python MiniSom.save_map方法代碼示例

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


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

示例1: figure

# 需要導入模塊: from minisom import MiniSom [as 別名]
# 或者: from minisom.MiniSom import save_map [as 別名]
    from pylab import text,show,cm,axis,figure,subplot,imshow,zeros
    figure(1)
    im = 0
    result = np.array([])
    for x,t in zip(data,num): # scatterplot
     w = drmap.winner(x)
     result.resize((im+1,3))
     result[im][0]=w[0]
     result[im][1]=w[1]
     result[im][2]=num[im]
     text(w[0]+.5, w[1]+.5, str(t), color=cm.Dark2(t / 8.), fontdict={'weight': 'bold', 'size': 11})
     im = im + 1
     axis([0,drmap.weights.shape[0],0,drmap.weights.shape[1]])

    # Save SOM file
    drmap.save_map()

else:
    if mode == 2:
        print "Using LLE"
        construct = manifold.LocallyLinearEmbedding(n_neighbors, n_components=2, method='standard')
        if fresh_data == 1:
            print "Training..."
            drmap = construct.fit(data)
            print "\n...ready!"
            f = open('LLE','w')
            pickle.dump(drmap,f)
            f.close()
        else:
            print "Loading Data"
            f = open('LLE', 'r')
開發者ID:mrich7,項目名稱:hrl-summer-2014,代碼行數:33,代碼來源:dr.py


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