David GG

Results 11 comments of David GG
trafficstars

> Thanks for reporting. Would you do a PR to correct this? If you do, check how other official APIs do this for inspiration: [CPLEX](https://github.com/coin-or/pulp/blob/ff8d48fcb543177fdb1bc15688c362fa6ce39448/pulp/apis/cplex_api.py#L456) or [GUROBI](https://github.com/coin-or/pulp/blob/ff8d48fcb543177fdb1bc15688c362fa6ce39448/pulp/apis/gurobi_api.py#L181) Done in #576...

> I am having a "The device time out" problem connecting my MacBook Pro (Retina, 15-inch, Mid 2015) with Catalina 10.15.3 and iPad Pro 12.9 with osx version 13.31. Everything...

Sure, this is a minimal working example to show it: ```python import pulp import pandas as pd from IPython.display import display x = pulp.LpVariable.dicts("x", indices = range(3)) var_sum = pulp.lpSum(x.values())...

Image Classification Project

@krismp I was not able, but I haven't tried again for a long time.

thanks a lot @LeenMachine ! it really helped. Would be nice to have it solved

hello @Louis-Dupont , thanks for all the info. I created an initial PR here: https://github.com/Deci-AI/super-gradients/pull/1083 could you comment on it?

Thanks @MLopez-Ibanez ```python def isBinary(self): return self.cat == const.LpInteger and self.lowBound == 0 and self.upBound == 1 def isInteger(self): return self.cat == const.LpInteger def isFree(self): return self.lowBound is None and...

Thanks for the nice work! Having the same problem here, it is not a limitation of n8n, but it is raising an OpenAI error. It can be reproduced using OpenAI...