Created
July 4, 2012 06:24
-
-
Save satomacoto/3045713 to your computer and use it in GitHub Desktop.
label propagation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from scipy.sparse import dok_matrix, dia_matrix, identity | |
from scipy.sparse.linalg import spsolve | |
# ネットワークの構造 | |
# ノードiとノードjの間にリンクがあるときW[i,j]=1 | |
W = dok_matrix((10,10)) | |
W[0,2] = W[2,0] = 1 | |
W[0,4] = W[4,0] = 1 | |
W[0,9] = W[9,0] = 1 | |
W[1,2] = W[2,1] = 1 | |
W[2,3] = W[3,2] = 1 | |
W[3,4] = W[4,3] = 1 | |
W[3,6] = W[6,3] = 1 | |
W[5,9] = W[9,5] = 1 | |
W[6,7] = W[7,6] = 1 | |
W[6,8] = W[8,6] = 1 | |
W[7,9] = W[9,7] = 1 | |
# クラスラベル | |
# 与えられていないときは0 | |
y = dok_matrix([[1, 0, 1, 0, 1, -1, -1, -1, 0, 0]]) | |
# DはWの各行(もしくは列)の和を対角成分に持つ行列 | |
D = dia_matrix((W.sum(0),[0]), (10,10)) | |
# ラプラシアン行列 | |
L = D - W | |
# 単位行列 | |
I = identity(10) | |
# lamb>0は2つの項のバランスを取る定数 | |
lamb = 1 | |
# 連立方程式の解を求める | |
#[ 0.45966011 0.23023256 0.46046512 0.1519678 0.5372093 -0.57951699 | |
# -0.38980322 -0.51627907 -0.19490161 -0.15903399] | |
f = spsolve((I + lamb * L), y) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment