python 2.7 - Multiple label values support in graphlab.label_propagation.create -


below code tries add 2 vertices both vertices having multiple label values. tries apply label_propagation on label "labelx" graph created.

from graphlab import label_propagation graphlab import sframe, sgraph, vertex, edge  g = sgraph() verts = [vertex('h',attr={'labelx': [1,0]})] g= g.add_vertices(verts) verts = [vertex('i',attr={'labelx': [0,2]})] g= g.add_vertices(verts) g = g.add_edges(edge('h','i')) print g.summary m = label_propagation.create(g, label_field='labelx') 

but, throws error typeerror: typeerro...typed.',)

in documentation of labelpropagation, not find multi label support information anywhere. hints on how resolve problem welcome. if graphlab.label_propagation not support multilabels on vertices, directions on other packages offers functionality helpful.

thanks!


Comments

Popular posts from this blog

sql - VB.NET Operand type clash: date is incompatible with int error -

SVG stroke-linecap doesn't work for circles in Firefox? -

python - TypeError: Scalar value for argument 'color' is not numeric in openCV -