Vigneshwar Pesaru
- Total activity 15
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 2
Posts
Recent activity by Vigneshwar Pesaru-
Trying to leverage relumip package of AnnModel
AnsweredHi, Basically I trained my neural net model and saved my h5 file and read into my optimization code(https://github.com/process-intelligence-research/ReLU_ANN_MILP/blob/master/examples/Gurobi%20exa...
-
Need a specific format of decision variable i.e. <gurobi.Var C0> instead of <gurobi.Var *Awaiting Model Update*> when I iterate over loop.? any idea how to get this.? I need this format to use specific package of neural network.
AnsweredIn-order to get this format : [<gurobi.Var C0>, <gurobi.Var C1>, <gurobi.Var C2>, ... ...] I put in the loop as below.. count = 0 input_vars = [] while count <= 30: input_vars.append(opt_mod...