Scipy Dependency
See original GitHub issueDiscussion
Now I’m trying to introduce CMA-ES with Margin, and I’m thinking of putting scipy dependency into this repository.
Specifically, I’d like to use chi2.ppf
in the following.
https://github.com/scipy/scipy/blob/v1.9.1/scipy/stats/_continuous_distns.py#L1343-L1407
It might be possible to implement chi2.ppf
without scipy, but it seems to be a bit difficult (at least for me).
Optuna, which employs this repository for using CMA-ES, already requires scipy, so I think this doesn’t become a problem. https://github.com/optuna/optuna/blob/master/setup.py#L39
Issue Analytics
- State:
- Created a year ago
- Comments:5
Top Results From Across the Web
Installation - SciPy
Pyzo: A free distribution based on Anaconda and the IEP interactive development environment; Supports Linux, Windows, and Mac. Installing with Pip. You can ......
Read more >SciPy - PyPI
SciPy (pronounced “Sigh Pie”) is an open-source software for mathematics, science, and engineering. It includes modules for statistics, optimization, ...
Read more >Installing SciPy with pip - python - Stack Overflow
In Ubuntu 10.04 (Lucid), I could successfully pip install scipy (within a virtualenv) after installing some of its dependencies, ...
Read more >Python Dependencies - Everything You Need to Know
Dependency conflicts occur when different Python packages have the same dependency, but depend on different and incompatible versions of that ...
Read more >Managing an R Package's Python Dependencies • reticulate
If you're writing an R package that uses reticulate as an interface to a Python session, you likely also need to install one...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Sounds great 👍 As you said, we should compare the accuracy though.
FYI: @amylase is working on this issue on https://github.com/CyberAgentAILab/cmaes/pull/126