Thomas J. Fan

Results 255 comments of Thomas J. Fan

Currently, it would be difficult to introduce `numba` as a dependency to scikit-learn. As for extended isolation forest, as mentioned in https://github.com/scikit-learn/scikit-learn/issues/16517#issuecomment-589829247 the paper does not meet scikit-learn's inclusion criterion....

Thank you for opening the issue @cwfoo ! That is correct, we no longer generate the PDF.

Yes, we do not plan to generate PDFs at this time. The reasons why we made the decision is in https://github.com/scikit-learn/scikit-learn/issues/17051

Thinking about it again, I'll reopen this issue for discussion. The main concern with generating PDFs was that it was a big maintenance burden as stated in https://github.com/scikit-learn/scikit-learn/issues/17051#issue-607095582 @cwfoo What...

pandas uses different code paths for a list and a Series: - Using a Series sets the index directly: ```python import pandas as pd df = pd.DataFrame({"a": [1, 2, 3],...