Vigneshwar Pesaru
- 合計アクティビティ 15
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 2
投稿
Vigneshwar Pesaruによる最近のアクティビティ-
Trying to leverage relumip package of AnnModel
回答済みHi, 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.
回答済みIn-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...