Commit e5bc8728 authored by delanoe's avatar delanoe

[FIX] removing useless try/Except.

parent 8a5dcf17
# Gargantext lib # Gargantext lib
from gargantext.util.db import session from gargantext.util.db import session
from gargantext.util.http import JsonHttpResponse from gargantext.util.http import JsonHttpResponse
from gargantext.models import Node, NodeNgram, NodeNgramNgram from gargantext.models import Node, Ngram, NodeNgram, NodeNgramNgram
#from gargantext.util.toolchain.ngram_coocs import compute_coocs #from gargantext.util.toolchain.ngram_coocs import compute_coocs
from graphExplorer.distance import do_distance from graphExplorer.distance import do_distance
...@@ -85,22 +85,18 @@ def get_cooc( request=None, corpus=None ...@@ -85,22 +85,18 @@ def get_cooc( request=None, corpus=None
if type == "node_link": if type == "node_link":
nodesB_dict = {} nodesB_dict = {}
for node_id in G.nodes(): for node_id in G.nodes():
try: #node,type(labels[node])
#node,type(labels[node]) G.node[node_id]['pk'] = ids[node_id][1]
G.node[node_id]['pk'] = ids[node_id][1] nodesB_dict [ ids[node_id][1] ] = True
nodesB_dict [ ids[node_id][1] ] = True # TODO the query below is not optimized (do it do_distance).
# TODO the query below is not optimized (do it do_distance). the_label = session.query(Ngram.terms).filter(Ngram.id==node_id).first()
the_label = session.query(Ngram.terms).filter(Ngram.id==node_id).first() the_label = ", ".join(the_label)
the_label = ", ".join(the_label) G.node[node_id]['label'] = the_label
G.node[node_id]['label'] = the_label
G.node[node_id]['size'] = weight[node_id]
G.node[node_id]['size'] = weight[node_id] G.node[node_id]['type'] = ids[node_id][0].replace("ngrams","terms")
G.node[node_id]['type'] = ids[node_id][0].replace("ngrams","terms") G.node[node_id]['attributes'] = { "clust_default": partition[node_id]} # new format
G.node[node_id]['attributes'] = { "clust_default": partition[node_id]} # new format # G.add_edge(node, "cluster " + str(partition[node]), weight=3)
# G.add_edge(node, "cluster " + str(partition[node]), weight=3)
except Exception as error:
pass #PrintException()
#print("error01: ",error)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment