jlopezpena
jlopezpena
There are also no wheels for linux on arm64, which also prevents from installing binaries from pypi when using a docker container on an M1 mac. Having the arm64 wheels...
Pandas 1.5 is out, this is a WIP just testing wether upgrading it breaks anything
This happens to me often when my workers need to launch memory intensive tasks, the typical case is when each worker needs to fit a tensorflow/keras neural network or a...
Apologies for the very late reply. It seems my problem is quite unique. I have a huge number of features (compared to the dataset size), almost all of them have...
Totally agree. The separate wrapper is kind of what I am doing on my own code, my biggest issue with it is that I cannot hook it up with the...
I am all for introducing better guesses (having a good guess is critical for Newton-Raphson to converge!) but it seems the method in this PR is producing the wrong answer...
In the first test, the positive cashflows are larger than the negative ones, so a negative IRR doesn't really make sense. Similarly in the second one, how can an IRR...
There are two different considerations here. One is the logical meaning of IRR as a return on an investment. The other is the definition as **a** solution of a certain...
> I'm not familiar with this, do you have a reference for the existence of positive & negative solutions? I think the way it's written is not entirely accurate, e.g....
There are many ways the computation of the IRR can be sped up, such as choosing a different root finding algorithm like Brent-Q. But the essence of `numpy-financial` is being...