I have variables that change size over the course of the program, and variables that should get added into the middle of the Graph, but when I run the program, those variables remain unchanged.
I found this question which tells me it's not possible to change variables after the Graph has been created, and suggests a method of creating a session with a new graph. When I tried that, I got issues with having uninitialized Variables. I tried saving the variables I needed and then restoring them in the new Session, but it still claimed they were uninitialized.
How can I add Variables to a Session while keeping their previous values? Or, better if possible, how can I change the size of Variables in a Graph, or force the Graph to restructure without reinitializing the Variables?