You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've started working with the seirsplus framework with a networkx created SBM network, but it became very memory-intensive and slow. Is there a way we can use graph_tool networks to work with the seirsplus models?
The text was updated successfully, but these errors were encountered:
I have converted the graph_tool to an adjacency matrix and used it to populate the SEIRSNetworkModel. The problem is that, even though it accepts numpy.ndarrays as input for G parameter, this parameter is treated as a graph in: transitionNode_GNbrs = list(self.G[transitionNode].keys()) transitionNode_GQNbrs = list(self.G_Q[transitionNode].keys())
I've started working with the seirsplus framework with a networkx created SBM network, but it became very memory-intensive and slow. Is there a way we can use graph_tool networks to work with the seirsplus models?
The text was updated successfully, but these errors were encountered: