Ed Schofield
Ed Schofield
Consider this code snippet: ```python a = Fxp(-2., dtype="fxp-s24/8") b = Fxp(2.15, dtype="fxp-s24/8") assert b.status['inaccuracy'] c = a+b # This fails: assert c.status['inaccuracy'] ``` It might make sense for the...
The following code fails with a misleading error message: ```python %%run_pytest[clean] import pytest @pytest.mark.parameterize('test_input,expected', [("3+5", 8)]) def test_eval(test_input, expected): assert eval(test_input) == expected ``` The error message is: ``` E...
Nice work on vega_datasets and altair! 😃 It would be great for the entire world airports dataset to be included in `vega_datasets`, not just a subset for those in the...
The calculation in `naturaldate()` of how many days ahead or behind a date is, is incorrect for tz-aware datetimes. Consider when the current time is 2023-10-15 23:00:00+00:00 (UTC). In various...
#### Reference Issues/PRs Fixes #25623: https://github.com/scikit-learn/scikit-learn/issues/25623 #### Summary This PR updates `KernelDensity` to correctly handle datasets whose covariance matrix is not the identity matrix. #### Problem Currently, `KernelDensity` assumes that...
### Is your feature request related to a problem? Consider this question: "Find the penguin with the longest bill per species". The following code works with the `duckdb` and `sqlite`...
[uv_install_logs.tar.gz](https://github.com/user-attachments/files/20915431/uv_install_logs.tar.gz) ### Summary `uv` seems to fail to recognize some macOS Universal wheels when running in a `conda` environment on Darwin x86_64. The following four packages install fine using `pip...
## Description Initial work on #7462 from the PyData Amsterdam 2025 PyMC sprint. ---- 📚 Documentation preview 📚: https://pymc--7918.org.readthedocs.build/en/7918/
### Describe the issue: Following these docs on the contributing page: ``` conda env create -f conda-envs/environment-dev.yml ``` and attempting to run the test suite results in `ModuleNotFoundError`s due to...
### Problem The Skorch docs claim that it is possible to pass a Skorch or PyTorch `Dataset` to the `.fit()` method of a `NeuralNet`, with the caveat that `y=None` must...