Sean Ma
- 合計アクティビティ 5
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 1
アクティビティの概要
Sean Maさんの最近のアクティビティ-
Sean Maさんがコメントを作成しました:
Thanks Riley.
-
Sean Maさんがコメントを作成しました:
Thanks Riley for the quick response. Some data manipulation using pandas / polars DataFrame will lead to flags.writable=False. I am currently using the array's copy as a workaround.
-
Sean Maさんがコメントを作成しました:
Thanks Riley. Gurobipy version: '12.0.0'.
-
Sean Maさんが投稿を作成しました:
Python matrix api with non-writable numpy float64 array error: buffer source array is read-only
回答済みCode to duplicate the error (float32 type is OK - seems the api trying to do calculation in place for the float64 type):import numpy as np import gurobipy as gp model = gp.Model('gurobi_test') v = ...