File size: 28,124 Bytes
2ddbf65 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 | # This file contains functions that could be used in different parts of the project
import numpy as np
import networkx as nx
import os
import pickle
import sys
import matplotlib.pyplot as plt
import csv
import scipy
from scipy.sparse import csr_matrix
import copy
import seaborn as sns
import pandas as pd
import random
from collections import Counter
import time
from heapq import heappop, heappush
import itertools
from collections import deque
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
# These functions are used to handle the reservoir during computation
def compute(x, W, Win, u, alpha):
"""
Computes a single step of the neuron activity
"""
W_spr = W
x_spr = csr_matrix(x)
Win_spr = csr_matrix(Win)
u_spr = csr_matrix(u)
newx_spr = np.tanh(W_spr @ x_spr + Win_spr @ u_spr)
newx = newx_spr.toarray()
newx = (1-alpha)*x + newx*alpha
return newx
def step_compute(x, W, Win, Wout, u_in, alpha, mask):
"""
Computes a single step of the neuron activity and returns the output y
u_in should be the raw input vector WITHOUT the bias term.
"""
# Reshape u_in to make sure it's a column vector (Nu, 1)
u_in = np.array(u_in).reshape(-1, 1)
# Append bias 1 for the reservoir compute
u_in_with_bias = np.vstack((u_in, [[1]]))
# Calculate new reservoir state
newx = compute(x, W, Win, u_in_with_bias, alpha)
# Calculate output y = Wout @ [1; x[mask]] (Skip connection u_in removed)
X_col = np.vstack((np.ones((1,1)), newx[mask].reshape(-1, 1)))
y = Wout @ X_col
return newx, y
def simulate(x, W, Win, u, alpha, XX = None, XY = None, Yhat = None, building_matrices = False, mask=None):
"""
Sumulates the neural response to the entire input
"""
#time0 = time.time()
# Simulates the Echo State Network over the input u (L x (1+Nu))
if building_matrices: # this makes the time scale linearly with respect to the number of samples
if mask is None:
raise("Need to provide a mask for this step")
if XX is None or XY is None or Yhat is None:
raise("You need to provide the the basic matrices to build them incremetally")
retval = []
newx = copy.deepcopy(x)
for u_idx, u_in in enumerate(u):
#print(time.time())
newx = compute(newx, W, Win, u_in.reshape((u.shape[1],-1)), alpha)
retval.append(newx)
#print(time.time())
# Skip connection removed
newx_reshaped = np.hstack((np.ones((1,1)), newx[mask].reshape(1,-1)))
# Assuming newx_reshaped and Yhat are numpy arrays
newx_reshaped_col = newx_reshaped.reshape(-1, 1)
newx_reshaped_row = newx_reshaped.reshape(1, -1)
Yhat_col = Yhat[:, u_idx].reshape(-1, 1)
#print(time.time())
XX += np.dot(newx_reshaped_col, newx_reshaped_row)
XY += np.dot(Yhat_col, newx_reshaped_row)
#print(time.time())
retval = np.array(retval).reshape((-1,len(x))).transpose()
#print(f"computation in {time.time() - time0} : {time.time()} - {time0}")
return XX, XY, retval
else:
retval = []
newx = copy.deepcopy(x)
for u_in in u:
newx = compute(newx, W, Win, u_in.reshape((u.shape[1],-1)), alpha)
retval.append(newx)
retval = np.array(retval).reshape((-1,len(x))).transpose()
#print(f"computation in {time.time() - time0} : {time.time()} - {time0}")
return retval
# These functions are used to handle the complete graph of the brain and cut it down into smaller subgraphs
def create_connectivity_matrix(num_neu, graph_folder_name, sel_crit, biologically_accurate=False, showing_figure = False, make_comparison = True): # Creates the connectivity matrix ad W, and also W_in, W_out and biases. Saves them in the current directory, ready to be used by main.ipynb
# get cells classes, that will be useful for the input definition
csv_file = os.path.join(BASE_DIR, 'classes_by_cell_type.csv')
input_cell_types = ['olfactory', 'visual', 'mechanosensory', 'hygrosensory', 'unknown_sensory', 'ocellar', 'gustatory', 'thermosensory']
output_cell_types = [
"MBON", "DAN", "LHCENT", "clock", "pars_intercerebralis",
"pars_lateralis", "Kenyon_Cell", "ALON", "LOP>ME",
"LOP>LO.ME", "LOP>LO", "LOP", "TuBu"
]
data = []
with open(csv_file, 'r') as file:
csv_reader = csv.reader(file)
header = next(csv_reader) # Skip the header row
id_index = header.index('pt_root_id')
cell_type_index = header.index('cell_type')
for row in csv_reader:
cell_id = row[id_index]
cell_type = row[cell_type_index]
data += [(cell_id, cell_type)]
data_dict = {str(cell_id): cell_type for cell_id, cell_type in data}
# Load the network from a file
file_path = os.path.join(BASE_DIR ,'networks_graphs', graph_folder_name)
G = nx.read_graphml(os.path.join( file_path,'graph.graphml'))
unique_neurons = set(G.nodes())
# Load the biases from a file
with open(os.path.join( file_path,'biases.pkl'), 'rb') as file:
biases = pickle.load(file)
F, theta = selection_criterion(G=G, num_neu=num_neu, unique_neurons=unique_neurons, biases=biases, data_dict=data_dict, mode=sel_crit)
first_elements = {int(u) for u, v in F.edges}
second_elements = {int(v) for u, v in F.edges}
only_first = first_elements - second_elements
only_second = second_elements - first_elements
both = first_elements & second_elements
if showing_figure:
# Create a figure with 4 subplots
fig, axs = plt.subplots(2, 2, figsize=(12, 8))
# Degree distribution
degrees = [F.degree(n) for n in F.nodes()]
axs[0, 0].hist(degrees, bins=range(min(degrees), max(degrees) + 1), edgecolor='black')
axs[0, 0].set_title('Degree Distribution')
axs[0, 0].set_xlabel('Degree')
axs[0, 0].set_ylabel('Frequency')
# Clustering coefficient distribution
clustering_coeffs = nx.clustering(F).values()
axs[0, 1].hist(clustering_coeffs, bins=10, edgecolor='black')
axs[0, 1].set_title('Clustering Coefficient Distribution')
axs[0, 1].set_xlabel('Clustering Coefficient')
axs[0, 1].set_ylabel('Frequency')
# Shortest path length distribution
if nx.is_connected(F):
path_lengths = dict(nx.all_pairs_shortest_path_length(F))
lengths = []
for source in path_lengths:
for target in path_lengths[source]:
if source != target:
lengths.append(path_lengths[source][target])
axs[1, 0].hist(lengths, bins=range(min(lengths), max(lengths) + 1), edgecolor='black', align='left')
axs[1, 0].set_title('Shortest Path Length Distribution')
axs[1, 0].set_xlabel('Path Length')
axs[1, 0].set_ylabel('Frequency')
else:
axs[1, 0].text(0.5, 0.5, "The graph is not connected,\nso shortest path lengths cannot be computed for all pairs of nodes.",
horizontalalignment='center', verticalalignment='center', transform=axs[1, 0].transAxes)
# Connectivity of Unique IDs
labels = ['Only as Pre-syn', 'Only as Post-syn', 'Both']
sizes = [len(only_first), len(only_second), len(both)]
axs[1, 1].bar(labels, sizes, color=['blue', 'orange', 'green'])
axs[1, 1].set_title('Connectivity of Unique Neurons')
axs[1, 1].set_xlabel('Category')
axs[1, 1].set_ylabel('Number of Unique Neurons')
# Adjust the spacing between subplots
plt.tight_layout()
# Show the figure
plt.show()
# Save the figure in the /graph_stats/ folder
if not os.path.exists('graph_stats'):
os.makedirs('graph_stats')
graph_size = len(F.nodes())
figure_path = os.path.join('graph_stats', f'graph_stats_size_{graph_size}.png')
fig.savefig(figure_path)
print(f"Figure saved to {figure_path}")
if make_comparison:
# Create a graph D with the same sparsity as G but with randomly placed edges
num_nodes = len(F.nodes())
num_edges = len(F.edges())
# Generate a random graph with the same number of nodes and edges
D = nx.gnm_random_graph(num_nodes, num_edges)
while not nx.is_connected(D):
D = nx.gnm_random_graph(num_nodes, num_edges)
# Relabel the nodes of D to match the node labels of F
mapping = {i: node for i, node in enumerate(F.nodes())}
D = nx.relabel_nodes(D, mapping)
# Create a figure with 4 subplots
fig, axs = plt.subplots(2, 2, figsize=(12, 8))
# Degree distribution
degrees = [D.degree(n) for n in D.nodes()]
axs[0, 0].hist(degrees, bins=range(min(degrees), max(degrees) + 1), edgecolor='black')
axs[0, 0].set_title('Degree Distribution')
axs[0, 0].set_xlabel('Degree')
axs[0, 0].set_ylabel('Frequency')
# Clustering coefficient distribution
clustering_coeffs = nx.clustering(D).values()
axs[0, 1].hist(clustering_coeffs, bins=10, edgecolor='black')
axs[0, 1].set_title('Clustering Coefficient Distribution')
axs[0, 1].set_xlabel('Clustering Coefficient')
axs[0, 1].set_ylabel('Frequency')
# Shortest path length distribution
if nx.is_connected(D):
path_lengths = dict(nx.all_pairs_shortest_path_length(D))
lengths = []
for source in path_lengths:
for target in path_lengths[source]:
if source != target:
lengths.append(path_lengths[source][target])
axs[1, 0].hist(lengths, bins=range(min(lengths), max(lengths) + 1), edgecolor='black', align='left')
axs[1, 0].set_title('Shortest Path Length Distribution')
axs[1, 0].set_xlabel('Path Length')
axs[1, 0].set_ylabel('Frequency')
else:
axs[1, 0].text(0.5, 0.5, "The graph is not connected,\nso shortest path lengths cannot be computed for all pairs of nodes.",
horizontalalignment='center', verticalalignment='center', transform=axs[1, 0].transAxes)
first_elements_D = {int(u) for u, v in D.edges}
second_elements_D = {int(v) for u, v in D.edges}
only_first_D = first_elements_D - second_elements_D
only_second_D = second_elements_D - first_elements_D
both_D = first_elements_D & second_elements_D
# Connectivity of Unique IDs
labels = ['Only as Pre-syn', 'Only as Post-syn', 'Both']
sizes = [len(only_first_D ), len(only_second_D ), len(both_D )]
axs[1, 1].bar(labels, sizes, color=['blue', 'orange', 'green'])
axs[1, 1].set_title('Connectivity of Unique Neurons')
axs[1, 1].set_xlabel('Category')
axs[1, 1].set_ylabel('Number of Unique Neurons')
# Adjust the spacing between subplots
plt.tight_layout()
# Show the figure
plt.show()
# Save the figure in the /graph_stats/ folder
if not os.path.exists('graph_stats'):
os.makedirs('graph_stats')
graph_size = len(F.nodes())
figure_path = os.path.join('graph_stats', f'graph_stats_size_{graph_size}_random_perm.png')
fig.savefig(figure_path)
print(f"Figure saved to {figure_path}")
# Convert the connectivity matrix to a sparse matrix
connectivity_matrix = scipy.sparse.csr_matrix(nx.to_scipy_sparse_array(F, weight='weight'))
target_radius = 1
spectral_radius, _ = scipy.sparse.linalg.eigs(connectivity_matrix, k=1, which='LM')
# Rescale the connectivity matrix
theta = theta.astype('float')
rescaled_matrix = connectivity_matrix * target_radius/np.linalg.norm(spectral_radius)
theta *= target_radius/abs(float(np.linalg.norm(spectral_radius)))
print("Initial Spectral Radius:", spectral_radius)
# Keep scaling the matrix down until the spectral radius is below 1
scaling_factor = .99
while True:
spectral_radius, _ = scipy.sparse.linalg.eigs(rescaled_matrix, k=1, which='LM')
print(f"\rSpectral Radius: {np.linalg.norm(spectral_radius)}", end='', flush=True)
if np.linalg.norm(spectral_radius) < 1:
break
rescaled_matrix *= scaling_factor
theta *= scaling_factor
print(f"\n")
# Create W_in array
W_in = np.zeros((len(F.nodes()) , 1))
# Update W_in based on input_cell_types
for i, neuron_id in enumerate(F.nodes()):
if int(neuron_id) in [int(x) for x in list(data_dict.keys())] and data_dict[neuron_id] in input_cell_types:
W_in[i] = 1
if not biologically_accurate or np.max(W_in) == 0:
print("No input neurons found in the selected neurons, switching to first element only neurons.")
for i, neuron_id in enumerate(F.nodes()):
if int(neuron_id) in only_first:
W_in[i] = 1
if np.max(W_in) == 0:
print("no first element only neurons found")
W_in = None
W_out = np.zeros((len(F.nodes()), 1))
# Update W_out based on output_cell_types
for i, neuron_id in enumerate(F.nodes()):
if int(neuron_id) in [int(x) for x in list(data_dict.keys())] and data_dict[neuron_id] in output_cell_types:
W_out[i] = 1
if not biologically_accurate or np.max(W_out) == 0:
print("No output neurons found in the selected neurons, switching to second element only neurons.")
for i, neuron_id in enumerate(F.nodes()):
if int(neuron_id) in only_second:
W_out[i] = 1
if np.max(W_out) == 0:
print("no second element only neurons found")
W_out = None
# Save W_out to a file called W_out
with open(os.path.join(BASE_DIR, 'W_out.pkl'), 'wb') as file:
pickle.dump(W_out, file)
# Save connectivity_matrix to a file called W
with open(os.path.join(BASE_DIR, 'W.pkl'), 'wb') as file:
pickle.dump(rescaled_matrix, file)
# Save W_in to a file called W_in
with open(os.path.join(BASE_DIR, 'W_in.pkl'), 'wb') as file:
pickle.dump(W_in, file)
# Save theta to a file called theta.pkl
with open(os.path.join(BASE_DIR, 'bias.pkl'), 'wb') as file:
pickle.dump(theta, file)
# This function is similar to the one above, but it does not save the matrices in src/** and only returns the neurons IDs and the unique cell types
def get_neurons_id(num_neu, mode, graph_folder_name):
# get cells classes, that will be useful for the input definition
csv_file = os.path.join(BASE_DIR, 'classes_by_cell_type.csv')
data = []
with open(csv_file, 'r') as file:
csv_reader = csv.reader(file)
header = next(csv_reader) # Skip the header row
id_index = header.index('pt_root_id')
cell_type_index = header.index('cell_type')
for row in csv_reader:
cell_id = row[id_index]
cell_type = row[cell_type_index]
data += [(cell_id, cell_type)]
data_dict = {str(cell_id): cell_type for cell_id, cell_type in data}
# Load the network from a file
file_path = os.path.join(BASE_DIR, 'networks_graphs', graph_folder_name)
G = nx.read_graphml(os.path.join( file_path,'graph.graphml'))
unique_neurons = set(G.nodes())
# Calculate the total number of edges for each neuron
edge_counts = {neuron: G.degree(neuron) for neuron in unique_neurons}
# Sort the neuron IDs based on the edge counts in descending order
sorted_neurons = sorted(unique_neurons, key=lambda neuron: edge_counts[neuron], reverse=True)
# Create a sorted list of neuron IDs
neuron_id_list = list(sorted_neurons)
F, _ = selection_criterion(G=G, num_neu=num_neu, unique_neurons=unique_neurons, mode=mode, biases=None, data_dict=data_dict)
neuron_ids_in_F = list(F.nodes)
unique_cell_types_in_F = set(data_dict[neuron_id] for neuron_id in neuron_ids_in_F if neuron_id in data_dict)
return neuron_ids_in_F, unique_cell_types_in_F
def selection_criterion(G, num_neu, unique_neurons, data_dict, biases = None, mode='connectivity_first', params=None): #This function selects a smaller subset of N neurons from the full NetworkX graph G, and returns the NetworkX graph F, containing N nodes
if 'connectivity_first' in mode:
# Calculate the total number of edges for each neuron
edge_counts = {neuron: G.degree(neuron) for neuron in unique_neurons}
# Sort the neuron IDs based on the edge counts in descending order
sorted_neurons = sorted(unique_neurons, key=lambda neuron: edge_counts[neuron], reverse=True)
if biases is not None:
sorted_biases = np.array([biases[nrn] for nrn in sorted_neurons])
# Create a sorted list of neuron IDs
neuron_id_list = list(sorted_neurons)
num_neuron = num_neu
# Create a subgraph of G with the first num_neurons neurons
F = G.subgraph(neuron_id_list[:num_neuron])
# Create a copy of the subgraph
F = F.copy()
if '2' in mode:
if not nx.is_connected(F):
print("Graph not fully connected, connecting the components")
components = list(nx.connected_components(F))
meta_graph = nx.Graph()
for i, comp in enumerate(components):
meta_graph.add_node(i)
candidate_nodes = set(G.nodes()) - set(F.nodes())
best_addition = set()
F = min_node_connected_subgraph(G, components)
print("Pruning components")
# Check the number of nodes in F
while len(F.nodes()) > num_neuron:
# Find the least connected node
sorted_nodes = sorted(F.nodes, key=lambda node: F.degree(node))
for node in sorted_nodes:
F_tentative = F.copy()
F_tentative.remove_node(node)
if nx.is_connected(F_tentative):
F = F_tentative
break
print(f"\rCurrent number of nodes: {len(F.nodes())}", end='', flush=True)
print("Adding components")
while len(F.nodes()) < num_neuron:
# Find the node in G that is most connected to nodes already in F
candidate_nodes = set(G.nodes()) - set(F.nodes())
best_node = max(candidate_nodes, key=lambda node: len(set(G.neighbors(node)) & set(F.nodes())))
F.add_node(best_node)
for neighbor in G.neighbors(best_node):
if neighbor in F.nodes:
F.add_edge(best_node, neighbor, weight=G[best_node][neighbor]['weight'])
else:
# Check if the graph is connected
if not nx.is_connected(F):
# Find the largest connected component
largest_component = max(nx.connected_components(F), key=len)
# Create a new graph with only the largest connected component
F = F.subgraph(largest_component)
# Print the number of unique neurons in the new graph
print("The graph is not fully connected. Only the largest connected component is considered.")
print("Number of unique neurons in the biggest element:", len(F))
if biases is not None:
theta = sorted_biases[:len(F)]
F = F.copy()
if not '2' in mode:
# Add neurons connected to F from G according to the order in sorted_neurons until num_neurons is reached
for neuron_id in sorted_neurons:
if len(F.nodes) >= num_neuron:
break
if neuron_id not in F.nodes:
for neighbor in G.neighbors(neuron_id):
if neighbor in F.nodes:
F.add_node(neuron_id)
F.add_edge(neuron_id, neighbor, weight=G[neuron_id][neighbor]['weight'])
if biases is not None:
theta += [biases[neuron_id]]
break
print("Number of unique neurons after adding neighbors:", len(F))
elif 'proportional_selection' in mode:
# Find the largest connected component
if G.is_directed():
largest_component = max(nx.weakly_connected_components(G), key=len)
else:
largest_component = max(nx.connected_components(G), key=len)
# Create a new graph with only the largest connected component
G = G.subgraph(largest_component)
# Remove keys from data_dict that are no longer in G
data_dict = {k: v for k, v in data_dict.items() if k in G.nodes()}
if num_neu > len(G.nodes()):
print(f"Number of neurons requested is greater than the number of neurons in the graph, setting number of neuron to {G.nodes()}")
return None
class_count = Counter(data_dict.values())
D = []
nodes_to_keep = set()
for key_idx, key in enumerate(class_count.keys()):
fraction = class_count[key] / len(data_dict)
target_class_ids = [k for k, v in data_dict.items() if v == key]
edge_counts = {neuron: G.degree(neuron) for neuron in target_class_ids}
try:
sorted_target_class_ids = sorted(target_class_ids, key=lambda neuron: edge_counts[neuron], reverse=True)
except:
print(f"Class {key} has no neurons in the graph")
num_neuron = num_neu
D_temp = G.subgraph(sorted_target_class_ids[:int(np.ceil(fraction*num_neuron))]).copy()
D += [D_temp]
for node in D_temp.nodes():
nodes_to_keep.add(node)
F = G.subgraph(list(nodes_to_keep)).copy()
is_conn = nx.is_weakly_connected(F) if F.is_directed() else nx.is_connected(F)
if not is_conn:
print("Graph not fully connected, quickly connecting the components with synthetic edges")
components = list(nx.weakly_connected_components(F) if F.is_directed() else nx.connected_components(F))
# Sort components by size descending
components.sort(key=len, reverse=True)
# Connect all smaller components to the largest one with a random weak edge
largest_comp = list(components[0])
for i in range(1, len(components)):
u = np.random.choice(largest_comp)
v = np.random.choice(list(components[i]))
# Add a weak directed edge
F.add_edge(u, v, weight=0.01)
print("Pruning components")
# Check the number of nodes in F
while len(F.nodes()) > num_neuron:
# Find the least connected node
sorted_nodes = sorted(F.nodes, key=lambda node: F.degree(node))
for node in sorted_nodes:
F_tentative = F.copy()
F_tentative.remove_node(node)
is_conn_tentative = nx.is_weakly_connected(F_tentative) if F_tentative.is_directed() else nx.is_connected(F_tentative)
if is_conn_tentative:
F = F_tentative
break
print(f"\rCurrent number of nodes: {len(F.nodes())}", end='', flush=True)
print("Adding components")
while len(F.nodes()) < num_neuron:
# Find the node in G that is most connected to nodes already in F
candidate_nodes = set(G.nodes()) - set(F.nodes())
best_node = max(candidate_nodes, key=lambda node: len(set(G.neighbors(node)) & set(F.nodes())))
F.add_node(best_node)
for neighbor in G.neighbors(best_node):
if neighbor in F.nodes:
F.add_edge(best_node, neighbor, weight=G[best_node][neighbor]['weight'])
node_ids = list(F.nodes())
if biases is not None:
theta = np.array([biases[nrn] for nrn in node_ids])
else:
raise ValueError(f"Invalid selection criterion mode: {mode}")
if biases is None:
theta = None
return F, theta
def min_node_connected_subgraph(G, components):
"""
Finds the minimal set of additional nodes needed to connect all given components in G.
Parameters:
G (networkx.Graph): The input graph.
components (list of sets): Each set contains nodes forming a component.
Returns:
networkx.Graph: The minimal connected subgraph with the fewest extra nodes.
"""
# Step 1: Identify component representative nodes
component_representatives = [next(iter(comp)) for comp in components]
# Step 2: Build a shortest-path metric graph based on node count
metric_graph = nx.Graph()
shortest_paths = {}
undirected_G = G.to_undirected(as_view=True) if G.is_directed() else G
for u, v in itertools.combinations(component_representatives, 2):
try:
# First try directed path
path = nx.shortest_path(G, source=u, target=v)
except nx.NetworkXNoPath:
try:
# Try the reverse directed path
path = nx.shortest_path(G, source=v, target=u)
except nx.NetworkXNoPath:
# Fallback to undirected path
try:
path = nx.shortest_path(undirected_G, source=u, target=v)
except nx.NetworkXNoPath:
continue # No path at all
metric_graph.add_edge(u, v, weight=len(path) - 1)
shortest_paths[(u, v)] = path
# Step 3: Compute MST on the metric graph to ensure minimal connectivity
mst = nx.minimum_spanning_tree(metric_graph, weight="weight")
# Step 4: Extract corresponding paths from the original graph
added_nodes = set()
subgraph_edges = set()
for u, v in mst.edges:
path = shortest_paths[(u, v)]
for i in range(len(path) - 1):
n1 = path[i]
n2 = path[i+1]
added_nodes.update([n1, n2])
if G.has_edge(n1, n2):
subgraph_edges.add((n1, n2))
elif G.has_edge(n2, n1):
subgraph_edges.add((n2, n1))
# Step 5: Construct the minimal connected subgraph
H = G.edge_subgraph(subgraph_edges).copy()
return H
def create_csr_matrix(size, target_sparsity, data_rvs):
density = 1 - target_sparsity
num_nonzero_elements = int(size * size * density)
# Generate random row and column indices for the non-zero elements
row_indices = np.random.randint(0, size, num_nonzero_elements)
col_indices = np.random.randint(0, size, num_nonzero_elements)
# Generate random values using the provided data_rvs function
data = data_rvs(num_nonzero_elements)
# Create the CSR matrix
csr_matrix = scipy.sparse.csr_matrix((data, (row_indices, col_indices)), shape=(size, size))
return csr_matrix
def is_fully_connected(W):
# Convert the sparse matrix to a NetworkX graph
graph = nx.from_scipy_sparse_array(W, create_using=nx.DiGraph if scipy.sparse.isspmatrix_csr(W) else nx.Graph)
# Check if the graph is strongly connected (for directed graphs) or connected (for undirected graphs)
if isinstance(graph, nx.DiGraph):
return nx.is_strongly_connected(graph)
else:
return nx.is_connected(graph) |