Ivan Petukhov

Results 14 comments of Ivan Petukhov

I rewrite it as I wish to: ``` list(oset2 & oset3) == list(oset2) ```

With keras==2.1.5(6): ``` Traceback (most recent call last): File "train_network.py", line 63, in val_split=args.val, tile=args.tile) File "train_network.py", line 32, in train_network model, serial_model = setup_model(X_train, class_names, weights_file=weights_file) File "/opt/data/panotti/panotti/models.py", line...

python3.10: ``` from orderedset import OrderedSet File "/usr/local/lib/python3.10/site-packages/orderedset/__init__.py", line 5, in from ._orderedset import OrderedSet ImportError: /usr/local/lib/python3.10/site-packages/orderedset/_orderedset.cpython-310-x86_64-linux-gnu.so: undefined symbol: _PyGen_Send ```

Operations moneys with 0 (zero integer) should be supported with django-money and moneyed (this really make sense), because you were worrying about initialization of currency, even if (for example) a...

Other example (with different error) ```python from sympy import Symbol, Abs, Rational, log, Interval from sympy.calculus.util import function_range x = Symbol('x', real=True) func_expr = log(1+x)/(x**(Rational(1, 3))*(2+x)) function_range(func_expr, x, Interval.Lopen(0, 1))...

Other example: ```python from sympy import Symbol, tan, Interval from sympy.calculus.util import function_range x = Symbol('x', real=True) func_expr = x**2/(2**tan(x) - 1) function_range(func_expr, x, Interval(0, 1)) Traceback (most recent call...