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'm trying to leverage PyTorch to further train the NEAT-generated network via backpropagation for improved performance. Currently, I'm manually building the network in PyTorch based on the node and edge details output by print(pipeline.algorithm.genome.repr(state, *best)). However, this process is cumbersome and becomes impractical when the network has a large number of nodes and edges. Is there a more efficient approach?