IBM / snapml-docs

IBM Snap ML Documentation
Apache License 2.0
0 stars 3 forks source link

dependencies file #29

Closed rootsmusic closed 5 months ago

rootsmusic commented 5 months ago

I'm looking for the package's dependency file. (A folder has a requirements.txt, but I assume that's for the docs. snapml-examples has 2 dependency files, but I assume those files are to run the examples.)

tdoublep commented 5 months ago

Snap ML source code is not open-source, so what you are looking for doesn't exist exactly. You can inspect the dependencies either by installing Snap ML in a clean conda (or pyenv environment) as seeing what pip pulls in. Alternatively, you can unzip one of the wheels that we distribute and inspect the METADATA file which contains the dependencies as below:

Requires-Dist: scikit-learn
Requires-Dist: scipy
Requires-Dist: numpy >=1.18.5 ; python_version < "3.10"
Requires-Dist: numpy >=1.21.3 ; python_version == "3.10"
Requires-Dist: numpy >=1.23.2 ; python_version == "3.11"