David Menéndez Hurtado
David Menéndez Hurtado
This should close #3, and along the way, also #2. I am having some trouble linking to Eigen in my box, here is the log: https://gist.github.com/Dapid/94cff5f6f3b4124a23da The problem seems to...
The current way is del(wp['ad']). We should have a dedicated method.
After adding a video to the list of tasks I right-clicked on the menu, and when selecting "Properties", I got the following traceback ```Traceback (most recent call last): File "/usr/lib/python3.9/site-packages/videomorph/forms/videomorph.py",...
I am cross-posting this bug from [Tensorflow](https://github.com/tensorflow/tensorflow/issues/57623) because I suspect it is due to Keras. It seems that `model.fit` and `model.predict`, when given numpy arrays, try to load the whole...
Sometimes I find a small function missing from Pythran. Implementing it in C++ may be a little bit challenging, but I can often bypass it by copying the source code...
The following code compiles: ``` import numpy as np # pythran export compute(float64[:], int) def compute(vector: np.ndarray, k: int): # Select the top-k all_indexes = np.argsort(vector) sel_indexes = all_indexes[:k] return...
This works: ``` # pythran export f(float64[5, 2], float64[2, 9]) def f(a, b): return a @ b ``` These ones don't: ``` # pythran export f(float64[5, 4, 2], float64[2, 9])...
[This silly module][1] takes 5 min to compile, while [this][2] can do it in just one. This is not really a big problem for using Pythran, but it becomes annoying...
I have successfully installed OpenCV, including the Python bindings. ``` print(cv2.getBuildInformation()) General configuration for OpenCV 4.9.0 ===================================== Version control: unknown Extra modules: Location (extra): /home/ica/opencv_contrib/modules Version control (extra): unknown Platform:...
iminuit2 has some backwards-incompatible changes. The code should be updated, until then we are stuck with iminuit 1. https://iminuit.readthedocs.io/en/stable/changelog.html#december-7-2020