本文整理匯總了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')