Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.9%) to scientific vocabulary
Last synced: 10 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: wang-hlin
  • License: apache-2.0
  • Language: Python
  • Default Branch: main
  • Size: 6.74 MB
Statistics
  • Stars: 0
  • Watchers: 3
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created over 2 years ago · Last pushed over 2 years ago
Metadata Files
Readme Changelog Contributing License Code of conduct Citation

README.md

Syne Tune: Large-Scale and Reproducible Hyperparameter Optimization

release License Downloads Documentation Python Version codecov.io

Syne Tune

Documentation | Tutorials | API Reference | PyPI | Latest Blog Post

Syne Tune provides state-of-the-art algorithms for hyperparameter optimization (HPO) with the following key features: * Lightweight and platform-agnostic: Syne Tune is designed to work with different execution backends, so you are not locked into a particular distributed system architecture. Syne Tune runs with minimal dependencies. * Wide coverage of different HPO methods: Syne Tune supports more than 20 different optimization methods across multi-fidelity HPO, constrained HPO, multi-objective HPO, transfer learning, cost-aware HPO, and population-based training. * Simple, modular design: Rather than wrapping other HPO frameworks, Syne Tune provides simple APIs and scheduler templates, which can easily be extended to your specific needs. Studying the code will allow you to understand what the different algorithms are doing, and how they differ from each other. * Industry-strength Bayesian optimization: Syne Tune has comprehensive support for Gaussian Process-based Bayesian optimization. The same code powers modalities such as multi-fidelity HPO, constrained HPO, and cost-aware HPO, and has been tried and tested in production for several years. * Support for distributed workloads: Syne Tune lets you move fast, thanks to the parallel compute resources AWS SageMaker offers. Syne Tune allows ML/AI practitioners to easily set up and run studies with many experiments running in parallel. Run on different compute environments (locally, AWS, simulation) by changing just one line of code. * Out-of-the-box tabulated benchmarks: Tabulated benchmarks let you simulate results in seconds while preserving the real dynamics of asynchronous or synchronous HPO with any number of workers.

Syne Tune is developed in collaboration with the team behind the Automatic Model Tuning service.

Installing

To install Syne Tune from pip, you can simply do:

bash pip install 'syne-tune[basic]'

or to install the latest version from source:

bash git clone https://github.com/awslabs/syne-tune.git cd syne-tune python3 -m venv st_venv . st_venv/bin/activate pip install --upgrade pip pip install -e '.[basic]'

This installs everything in a virtual environment st_venv. Remember to activate this environment before working with Syne Tune. We also recommend building the virtual environment from scratch now and then, in particular when you pull a new release, as dependencies may have changed.

See our change log to see what changed in the latest version.

Getting started

To enable tuning, you have to report metrics from a training script so that they can be communicated later to Syne Tune, this can be accomplished by just calling report(epoch=epoch, loss=loss) as shown in the example below:

```python

trainheightsimple.py

import logging import time

from syne_tune import Reporter from argparse import ArgumentParser

if name == 'main': root = logging.getLogger() root.setLevel(logging.INFO) parser = ArgumentParser() parser.addargument('--epochs', type=int) parser.addargument('--width', type=float) parser.addargument('--height', type=float) args, _ = parser.parseknownargs() report = Reporter() for step in range(args.epochs): time.sleep(0.1) dummyscore = 1.0 / (0.1 + args.width * step / 100) + args.height * 0.1 # Feed the score back to Syne Tune. report(epoch=step + 1, meanloss=dummyscore) ```

Once you have a training script reporting a metric, you can launch a tuning as follows:

```python

launchheightsimple.py

from synetune import Tuner, StoppingCriterion from synetune.backend import LocalBackend from synetune.configspace import randint from syne_tune.optimizer.baselines import ASHA

hyperparameter search space to consider

config_space = { 'width': randint(1, 20), 'height': randint(1, 20), 'epochs': 100, }

tuner = Tuner( trialbackend=LocalBackend(entrypoint='trainheightsimple.py'), scheduler=ASHA( configspace, metric='meanloss', resourceattr='epoch', maxresourceattr="epochs", searchoptions={'debuglog': False}, ), stopcriterion=StoppingCriterion(maxwallclocktime=30), n_workers=4, # how many trials are evaluated in parallel ) tuner.run() ```

The above example runs ASHA with 4 asynchronous workers on a local machine.

Experimentation with Syne Tune

If you plan to use advanced features of Syne Tune, such as different execution backends or running experiments remotely, writing launcher scripts like examples/launch_height_simple.py can become tedious. Syne Tune provides an advanced experimentation framework, which you can learn about in this tutorial or also in this one.

Supported HPO methods

The following hyperparameter optimization (HPO) methods are available in Syne Tune:

Method | Reference | Searcher | Asynchronous? | Multi-fidelity? | Transfer? :--- | :---: | :---: | :---: | :---: | :---: Grid Search | | deterministic | yes | no | no Random Search | Bergstra, et al. (2011) | random | yes | no | no Bayesian Optimization | Snoek, et al. (2012) | model-based | yes | no | no BORE | Tiao, et al. (2021) | model-based | yes | no | no CQR | Salinas, et al. (2023) | model-based | yes | no | no MedianStoppingRule | Golovin, et al. (2017) | any | yes | yes | no SyncHyperband | Li, et al. (2018) | random | no | yes | no SyncBOHB | Falkner, et al. (2018) | model-based | no | yes | no SyncMOBSTER | Klein, et al. (2020) | model-based | no | yes | no ASHA | Li, et al. (2019) | random | yes | yes | no BOHB | Falkner, et al. (2018) | model-based | yes | yes | no MOBSTER | Klein, et al. (2020) | model-based | yes | yes | no DEHB | Awad, et al. (2021) | evolutionary | no | yes | no HyperTune | Li, et al. (2022) | model-based | yes | yes | no DyHPO* | Wistuba, et al. (2022) | model-based | yes | yes | no ASHABORE | Tiao, et al. (2021) | model-based | yes | yes | no ASHACQR | Salinas, et al. (2023) | model-based | yes | yes | no PASHA | Bohdal, et al. (2022)| random or model-based | yes | yes | no REA | Real, et al. (2019) | evolutionary | yes | no | no KDE | Falkner, et al. (2018) | model-based | yes | no | no PBT | Jaderberg, et al. (2017) | evolutionary | no | yes | no ZeroShotTransfer | Wistuba, et al. (2015) | deterministic | yes | no | yes ASHA-CTS | Salinas, et al. (2021)| random | yes | yes | yes RUSH | Zappella, et al. (2021)| random | yes | yes | yes BoundingBox | Perrone, et al. (2019) | any | yes | yes | yes

*: We implement the model-based scheduling logic of DyHPO, but use the same Gaussian process surrogate models as MOBSTER and HyperTune. The original source code for the paper is here.

The searchers fall into four broad categories, deterministic, random, evolutionary and model-based. The random searchers sample candidate hyperparameter configurations uniformly at random, while the model-based searchers sample them non-uniformly at random, according to a model (e.g., Gaussian process, density ration estimator, etc.) and an acquisition function. The evolutionary searchers make use of an evolutionary algorithm.

Syne Tune also supports BoTorch searchers.

Supported multi-objective optimization methods

Method | Reference | Searcher | Asynchronous? | Multi-fidelity? | Transfer? :--- |:---------------------------:|:------------:| :---: | :---: | :---: Constrained Bayesian Optimization | Gardner, et al. (2014) | model-based | yes | no | no MOASHA | Schmucker, et al. (2021) | random | yes | yes | no NSGA-2 | Deb, et al. (2002) | evolutionary | no | no | no Multi Objective Multi Surrogate (MSMOS) | Guerrero-Viu, et al. (2021) | model-based | no | no | no MSMOS wihh random scalarization | Paria, et al. (2018) | model-based | no | no | no

HPO methods listed can be used in a multi-objective setting by scalarization or non-dominated sorting. See multiobjective_priority.py for details.

Examples

You will find many examples in the examples/ folder illustrating different functionalities provided by Syne Tune. For example: * launchheightbaselines.py: launches HPO locally, tuning a simple script trainheightexample.py for several baselines
* launchheightmoasha.py: shows how to tune a script reporting multiple-objectives with multiobjective Asynchronous Hyperband (MOASHA) * launchheightstandalone_scheduler.py: launches HPO locally with a custom scheduler that cuts any trial that is not in the top 80% * launchheightsagemaker_remotely.py: launches the HPO loop on SageMaker rather than a local machine, trial can be executed either the remote machine or distributed again as separate SageMaker training jobs. See launchheightsagemakerremotelauncher.py for remote launching with the help of RemoteTuner also discussed in one of the FAQs. * launchheightsagemaker.py: launches HPO on SageMaker to tune a SageMaker Pytorch estimator * launchbayesoptconstrained.py: launches Bayesian constrained hyperparameter optimization * launchheightsagemakercustomimage.py: launches HPO on SageMaker to tune an entry point with a custom docker image * launchplotresults.py: shows how to plot results of a HPO experiment * launchtensorboardexample.py: shows how results can be visualized on the fly with TensorBoard * launchnasbench201simulated.py: demonstrates simulation of experiments on a tabulated benchmark * launch_fashionmnist.py: launches HPO locally tuning a multi-layer perceptron on Fashion MNIST. This employs an easy-to-use benchmark convention * launchhuggingfaceclassification.py: launches HPO on SageMaker to tune a SageMaker Hugging Face estimator for sentiment classification * launchtuninggluonts.py: launches HPO locally to tune a gluon-ts time series forecasting algorithm * launchrltuning.py: launches HPO locally to tune a RL algorithm on the cartpole environment * launchheightray.py: launches HPO locally with Ray Tune scheduler

Examples for Experimentation and Benchmarking

You will find many examples for experimentation and benchmarking in benchmarking/examples/ and in benchmarking/nusery/.

FAQ and Tutorials

You can check our FAQ, to learn more about Syne Tune functionalities.

Do you want to know more? Here are a number of tutorials. * Basics of Syne Tune * Choosing a Configuration Space * Using the Built-in Schedulers * Multi-Fidelity Hyperparameter Optimization * Benchmarking in Syne Tune * Visualization of Results * Rapid Experimentation with Syne Tune * How to Contribute a New Scheduler * PASHA: Efficient HPO and NAS with Progressive Resource Allocation * Using Syne Tune for Transfer Learning * Distributed Hyperparameter Tuning: Finding the Right Model can be Fast and Fun

Blog Posts

Videos

Security

See CONTRIBUTING for more information.

Citing Syne Tune

If you use Syne Tune in a scientific publication, please cite the following paper:

"Syne Tune: A Library for Large Scale Hyperparameter Tuning and Reproducible Research" First Conference on Automated Machine Learning, 2022.

bibtex @inproceedings{ salinas2022syne, title={Syne Tune: A Library for Large Scale Hyperparameter Tuning and Reproducible Research}, author={David Salinas and Matthias Seeger and Aaron Klein and Valerio Perrone and Martin Wistuba and Cedric Archambeau}, booktitle={International Conference on Automated Machine Learning, AutoML 2022}, year={2022}, url={https://proceedings.mlr.press/v188/salinas22a.html} }

License

This project is licensed under the Apache-2.0 License.

Owner

  • Name: Haolin Wang
  • Login: wang-hlin
  • Kind: user
  • Location: Sheffield, UK

多言数穷 不如守中

Citation (CITATION.cff)

cff-version: 1.2.0
title: "Syne Tune: A Library for Large Scale Hyperparameter Tuning and Reproducible Research"
message: "If you use Syne Tune in your project, please cite our paper."
authors:
  - name: The Syne Tune Team
repository-code: "https://github.com/awslabs/syne-tune"
license: Apache-2.0
preferred-citation:
  authors:
      - given-names: David
        family-names: Salinas
      - family-names: Seeger
        given-names: Matthias
      - given-names: Aaron
        family-names: Klein
      - family-names: Perrone
        given-names: Valerio
      - given-names: Martin
        family-names: Wistuba
      - given-names: Cedric
        family-names: Archambeau
  title: "Syne Tune: A Library for Large Scale Hyperparameter Tuning and Reproducible Research"
  type: conference-paper
  year: 2022
  collection-title: "International Conference on Automated Machine Learning, AutoML 2022"
  url: "https://proceedings.mlr.press/v188/salinas22a.html"

GitHub Events

Total
Last Year

Committers

Last synced: 12 months ago

All Time
  • Total Commits: 6
  • Total Committers: 1
  • Avg Commits per committer: 6.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Haolin Wang l****1@o****m 6

Issues and Pull Requests

Last synced: over 1 year ago

All Time
  • Total issues: 0
  • Total pull requests: 1
  • Average time to close issues: N/A
  • Average time to close pull requests: less than a minute
  • Total issue authors: 0
  • Total pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 0.0
  • Merged pull requests: 1
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
  • xianyuanliu (2)
Top Labels
Issue Labels
Pull Request Labels

Dependencies

container/Dockerfile docker
  • ${DLAMI_REGISTRY_ID}.dkr.ecr.${REGION}.amazonaws.com/pytorch-training ${VERSION}-${CONTEXT}-ubuntu20.04-sagemaker build
benchmarking/examples/benchmark_dehb/requirements.txt pypi
  • syne-tune *
  • tqdm *
benchmarking/examples/benchmark_dyhpo/requirements.txt pypi
  • syne-tune *
  • tqdm *
benchmarking/examples/benchmark_hypertune/requirements.txt pypi
  • syne-tune *
  • tqdm *
benchmarking/examples/benchmark_warping/requirements.txt pypi
  • syne-tune *
  • tqdm *
benchmarking/examples/demo_experiment/requirements.txt pypi
  • syne-tune *
  • tqdm *
benchmarking/examples/fine_tuning_transformer_glue/requirements-synetune.txt pypi
  • syne-tune *
  • tqdm *
benchmarking/examples/fine_tuning_transformer_swag/requirements-synetune.txt pypi
  • syne-tune *
  • tqdm *
benchmarking/examples/launch_local/requirements-synetune.txt pypi
  • syne-tune *
  • tqdm *
benchmarking/examples/launch_sagemaker/requirements.txt pypi
  • syne-tune *
  • tqdm *
benchmarking/nursery/benchmark_automl/requirements.txt pypi
  • about-time =4.2.1=pypi_0
  • aiosignal =1.3.1=pypi_0
  • alabaster =0.7.16=pypi_0
  • alive-progress =3.1.5=pypi_0
  • anyio =4.2.0=pypi_0
  • asttokens =2.4.1=pypi_0
  • attrs =23.2.0=pypi_0
  • autograd =1.6.2=pypi_0
  • babel =2.14.0=pypi_0
  • beautifulsoup4 =4.12.2=pypi_0
  • black =22.3.0=pypi_0
  • blas =1.0=mkl
  • bleach =6.1.0=pypi_0
  • boto3 =1.34.19=pypi_0
  • botocore =1.34.19=pypi_0
  • botorch =0.9.5=pypi_0
  • brotli-python =1.0.9=py39h6a678d5_7
  • bzip2 =1.0.8=h7b6447c_0
  • ca-certificates =2023.12.12=h06a4308_0
  • certifi =2023.11.17=py39h06a4308_0
  • cffi =1.16.0=py39h5eee18b_0
  • chardet =5.2.0=pypi_0
  • charset-normalizer =3.3.2=pypi_0
  • click =8.1.7=pypi_0
  • cloudpickle =2.2.1=pypi_0
  • cma =3.2.2=pypi_0
  • comm =0.2.1=pypi_0
  • configspace =0.6.1=pypi_0
  • contextlib2 =21.6.0=pypi_0
  • contourpy =1.2.0=pypi_0
  • coolname =2.2.0=pypi_0
  • coverage =7.4.0=pypi_0
  • cramjam =2.8.0=pypi_0
  • cryptography =41.0.7=py39hdda0065_0
  • cuda-cudart =12.1.105=0
  • cuda-cupti =12.1.105=0
  • cuda-libraries =12.1.0=0
  • cuda-nvrtc =12.1.105=0
  • cuda-nvtx =12.1.105=0
  • cuda-opencl =12.3.101=0
  • cuda-runtime =12.1.0=0
  • cycler =0.12.1=pypi_0
  • datasets =1.8.0=pypi_0
  • debugpy =1.8.0=pypi_0
  • decorator =5.1.1=pypi_0
  • defusedxml =0.7.1=pypi_0
  • deprecated =1.2.14=pypi_0
  • dill =0.3.7=pypi_0
  • distlib =0.3.8=pypi_0
  • docker =7.0.0=pypi_0
  • docutils =0.20.1=pypi_0
  • exceptiongroup =1.2.0=pypi_0
  • executing =2.0.1=pypi_0
  • fastapi =0.95.2=pypi_0
  • fastjsonschema =2.19.1=pypi_0
  • fastparquet =0.8.1=pypi_0
  • ffmpeg =4.3=hf484d3e_0
  • filelock =3.9.0=pypi_0
  • flake8 =7.0.0=pypi_0
  • flatbuffers =23.5.26=pypi_0
  • fonttools =4.47.2=pypi_0
  • freetype =2.12.1=h4a9f257_0
  • frozenlist =1.4.1=pypi_0
  • fsspec =2023.12.2=pypi_0
  • future =0.18.3=pypi_0
  • giflib =5.2.1=h5eee18b_3
  • gmp =6.2.1=h295c915_3
  • gmpy2 =2.1.2=py39heeb90bb_0
  • gnutls =3.6.15=he1e5248_0
  • google-pasta =0.2.0=pypi_0
  • gpytorch =1.11=pypi_0
  • grapheme =0.6.0=pypi_0
  • grpcio =1.51.3=pypi_0
  • h11 =0.14.0=pypi_0
  • h5py =3.10.0=pypi_0
  • huggingface-hub =0.0.19=pypi_0
  • idna =3.6=pypi_0
  • imagesize =1.4.1=pypi_0
  • importlib-metadata =6.11.0=pypi_0
  • importlib-resources =6.1.1=pypi_0
  • iniconfig =2.0.0=pypi_0
  • intel-openmp =2023.1.0=hdb19cb5_46306
  • ipykernel =6.28.0=pypi_0
  • ipython =8.18.1=pypi_0
  • jaxtyping =0.2.25=pypi_0
  • jedi =0.19.1=pypi_0
  • jinja2 =3.1.3=pypi_0
  • jmespath =1.0.1=pypi_0
  • joblib =1.3.2=pypi_0
  • jpeg =9e=h5eee18b_1
  • jsonschema =4.20.0=pypi_0
  • jsonschema-specifications =2023.12.1=pypi_0
  • jupyter-client =8.6.0=pypi_0
  • jupyter-core =5.7.1=pypi_0
  • jupyterlab-pygments =0.3.0=pypi_0
  • kiwisolver =1.4.5=pypi_0
  • lame =3.100=h7b6447c_0
  • latexcodec =2.0.1=pypi_0
  • lcms2 =2.12=h3be6417_0
  • ld_impl_linux-64 =2.38=h1181459_1
  • lerc =3.0=h295c915_0
  • libcublas =12.1.0.26=0
  • libcufft =11.0.2.4=0
  • libcufile =1.8.1.2=0
  • libcurand =10.3.4.107=0
  • libcusolver =11.4.4.55=0
  • libcusparse =12.0.2.55=0
  • libdeflate =1.17=h5eee18b_1
  • libffi =3.4.4=h6a678d5_0
  • libgcc-ng =11.2.0=h1234567_1
  • libgomp =11.2.0=h1234567_1
  • libiconv =1.16=h7f8727e_2
  • libidn2 =2.3.4=h5eee18b_0
  • libjpeg-turbo =2.0.0=h9bf148f_0
  • libnpp =12.0.2.50=0
  • libnvjitlink =12.1.105=0
  • libnvjpeg =12.1.1.14=0
  • libpng =1.6.39=h5eee18b_0
  • libstdcxx-ng =11.2.0=h1234567_1
  • libtasn1 =4.19.0=h5eee18b_0
  • libtiff =4.5.1=h6a678d5_0
  • libunistring =0.9.10=h27cfd23_0
  • libwebp =1.3.2=h11a3e52_0
  • libwebp-base =1.3.2=h5eee18b_0
  • linear-operator =0.5.1=pypi_0
  • llvm-openmp =14.0.6=h9e868ea_0
  • lz4-c =1.9.4=h6a678d5_0
  • markdown-it-py =3.0.0=pypi_0
  • markupsafe =2.1.3=py39h5eee18b_0
  • matplotlib =3.8.2=pypi_0
  • matplotlib-inline =0.1.6=pypi_0
  • mccabe =0.7.0=pypi_0
  • mdit-py-plugins =0.4.0=pypi_0
  • mdurl =0.1.2=pypi_0
  • mistune =3.0.2=pypi_0
  • mkl =2023.1.0=h213fc3f_46344
  • mkl-service =2.4.0=py39h5eee18b_1
  • mkl_fft =1.3.8=py39h5eee18b_0
  • mkl_random =1.2.4=py39hdb19cb5_0
  • more-itertools =10.2.0=pypi_0
  • mpc =1.1.0=h10f8cd9_1
  • mpfr =4.0.2=hb69a4c5_1
  • mpmath =1.3.0=py39h06a4308_0
  • msgpack =1.0.7=pypi_0
  • multipledispatch =1.0.0=pypi_0
  • multiprocess =0.70.15=pypi_0
  • mypy-extensions =1.0.0=pypi_0
  • myst-parser =2.0.0=pypi_0
  • nbclient =0.9.0=pypi_0
  • nbconvert =7.14.1=pypi_0
  • nbformat =5.9.2=pypi_0
  • nbsphinx =0.9.3=pypi_0
  • ncurses =6.4=h6a678d5_0
  • nest-asyncio =1.5.9=pypi_0
  • nettle =3.7.3=hbbd107a_1
  • networkx =3.0=pypi_0
  • numpy =1.23.5=pypi_0
  • numpy-base =1.26.3=py39hb5e798b_0
  • nvidia-cublas-cu12 =12.1.3.1=pypi_0
  • nvidia-cuda-cupti-cu12 =12.1.105=pypi_0
  • nvidia-cuda-nvrtc-cu12 =12.1.105=pypi_0
  • nvidia-cuda-runtime-cu12 =12.1.105=pypi_0
  • nvidia-cudnn-cu12 =8.9.2.26=pypi_0
  • nvidia-cufft-cu12 =11.0.2.54=pypi_0
  • nvidia-curand-cu12 =10.3.2.106=pypi_0
  • nvidia-cusolver-cu12 =11.4.5.107=pypi_0
  • nvidia-cusparse-cu12 =12.1.0.106=pypi_0
  • nvidia-nccl-cu12 =2.18.1=pypi_0
  • nvidia-nvjitlink-cu12 =12.3.101=pypi_0
  • nvidia-nvtx-cu12 =12.1.105=pypi_0
  • onnxruntime =1.10.0=pypi_0
  • openh264 =2.1.1=h4ff587b_0
  • openjpeg =2.4.0=h3ad879b_0
  • openssl =3.0.12=h7f8727e_0
  • opt-einsum =3.3.0=pypi_0
  • packaging =23.2=pypi_0
  • pandas =2.1.4=pypi_0
  • pandocfilters =1.5.0=pypi_0
  • parso =0.8.3=pypi_0
  • pathos =0.3.1=pypi_0
  • pathspec =0.12.1=pypi_0
  • patsy =0.5.6=pypi_0
  • pexpect =4.9.0=pypi_0
  • pillow =10.2.0=pypi_0
  • pip =23.3.1=py39h06a4308_0
  • platformdirs =3.11.0=pypi_0
  • pluggy =1.3.0=pypi_0
  • pox =0.3.3=pypi_0
  • ppft =1.7.6.7=pypi_0
  • prompt-toolkit =3.0.43=pypi_0
  • protobuf =4.25.2=pypi_0
  • psutil =5.9.7=pypi_0
  • ptyprocess =0.7.0=pypi_0
  • pure-eval =0.2.2=pypi_0
  • pyaml =23.12.0=pypi_0
  • pyarrow =3.0.0=pypi_0
  • pybtex =0.24.0=pypi_0
  • pybtex-docutils =1.0.3=pypi_0
  • pycodestyle =2.11.1=pypi_0
  • pycparser =2.21=pyhd3eb1b0_0
  • pydantic =1.10.13=pypi_0
  • pyflakes =3.2.0=pypi_0
  • pygments =2.17.2=pypi_0
  • pymoo =0.6.1.1=pypi_0
  • pyopenssl =23.2.0=py39h06a4308_0
  • pypandoc-binary =1.12=pypi_0
  • pyparsing =3.1.1=pypi_0
  • pyro-api =0.1.2=pypi_0
  • pyro-ppl =1.8.6=pypi_0
  • pysocks =1.7.1=py39h06a4308_0
  • pytest =7.4.4=pypi_0
  • pytest-cov =4.1.0=pypi_0
  • pytest-timeout =2.2.0=pypi_0
  • python =3.9.18=h955ad1f_0
  • python-dateutil =2.8.2=pypi_0
  • pytorch =2.1.2=py3.9_cuda12.1_cudnn8.9.2_0
  • pytorch-cuda =12.1=ha16c6d3_5
  • pytorch-mutex =1.0=cuda
  • pytz =2023.3.post1=pypi_0
  • pyyaml =6.0.1=py39h5eee18b_0
  • pyzmq =25.1.2=pypi_0
  • ray =2.4.0=pypi_0
  • readline =8.2=h5eee18b_0
  • referencing =0.32.1=pypi_0
  • regex =2023.12.25=pypi_0
  • requests =2.31.0=py39h06a4308_0
  • rpds-py =0.17.1=pypi_0
  • s3fs =0.4.2=pypi_0
  • s3transfer =0.10.0=pypi_0
  • sacremoses =0.1.1=pypi_0
  • sagemaker =2.203.1=pypi_0
  • schema =0.7.5=pypi_0
  • scikit-learn =1.3.2=pypi_0
  • scikit-optimize =0.9.0=pypi_0
  • scipy =1.11.4=pypi_0
  • setuptools =68.2.2=py39h06a4308_0
  • six =1.16.0=pypi_0
  • smdebug-rulesconfig =1.0.1=pypi_0
  • sniffio =1.3.0=pypi_0
  • snowballstemmer =2.2.0=pypi_0
  • sortedcontainers =2.4.0=pypi_0
  • soupsieve =2.5=pypi_0
  • sphinx =7.2.6=pypi_0
  • sphinx-autodoc-typehints =1.25.2=pypi_0
  • sphinx-copybutton =0.5.2=pypi_0
  • sphinx-rtd-theme =2.0.0=pypi_0
  • sphinxcontrib-applehelp =1.0.8=pypi_0
  • sphinxcontrib-bibtex =2.6.2=pypi_0
  • sphinxcontrib-devhelp =1.0.6=pypi_0
  • sphinxcontrib-htmlhelp =2.0.5=pypi_0
  • sphinxcontrib-jquery =4.1=pypi_0
  • sphinxcontrib-jsmath =1.0.1=pypi_0
  • sphinxcontrib-qthelp =1.0.7=pypi_0
  • sphinxcontrib-serializinghtml =1.1.10=pypi_0
  • sqlite =3.41.2=h5eee18b_0
  • stack-data =0.6.3=pypi_0
  • starlette =0.27.0=pypi_0
  • statsmodels =0.14.1=pypi_0
  • sympy =1.12=py39h06a4308_0
  • syne-tune =0.10.0=dev_0
  • tabulate =0.9.0=pypi_0
  • tbb =2021.8.0=hdb19cb5_0
  • tblib =2.0.0=pypi_0
  • tensorboardx =2.6.2.2=pypi_0
  • threadpoolctl =3.2.0=pypi_0
  • tinycss2 =1.2.1=pypi_0
  • tk =8.6.12=h1ccaba5_0
  • tokenizers =0.10.3=pypi_0
  • tomli =2.0.1=pypi_0
  • torch =2.1.2=pypi_0
  • torchaudio =2.1.2
  • torchtriton =2.1.0=py39
  • torchvision =0.16.2
  • tornado =6.4=pypi_0
  • tqdm =4.49.0=pypi_0
  • traitlets =5.11.2=pypi_0
  • transformers =4.12.2=pypi_0
  • triton =2.1.0=pypi_0
  • typeguard =2.13.3=pypi_0
  • typing_extensions =4.9.0=py39h06a4308_0
  • tzdata =2023.4=pypi_0
  • ujson =5.9.0=pypi_0
  • urllib3 =1.26.18=py39h06a4308_0
  • uvicorn =0.22.0=pypi_0
  • virtualenv =20.21.0=pypi_0
  • wcwidth =0.2.13=pypi_0
  • webencodings =0.5.1=pypi_0
  • wheel =0.41.2=py39h06a4308_0
  • wrapt =1.16.0=pypi_0
  • xgboost =2.0.3=pypi_0
  • xxhash =3.4.1=pypi_0
  • xz =5.4.5=h5eee18b_0
  • yahpo-gym =1.0.1=pypi_0
  • yaml =0.2.5=h7b6447c_0
  • zipp =3.17.0=pypi_0
  • zlib =1.2.13=h5eee18b_0
  • zstd =1.5.5=hc292b87_0
benchmarking/nursery/benchmark_conformal/requirements.txt pypi
  • autorank *
  • botorch ==0.6.6
  • coolname *
  • fastparquet ==0.8.1
  • gpytorch ==1.8.1
  • h5py *
  • matplotlib *
  • numpy ==1.22.4
  • pandas ==2.0.1
  • s3fs *
  • scikit-learn *
  • scikit-posthocs ==0.7.0
  • syne-tune ==0.3.4
  • tqdm *
  • xgboost ==1.7.5
  • yahpo-gym ==1.0.1
benchmarking/nursery/benchmark_multiobjective/requirements.txt pypi
  • syne-tune *
  • tqdm *
benchmarking/nursery/benchmark_neuralband/requirements.txt pypi
  • botorch *
  • syne-tune *
  • tqdm *
benchmarking/nursery/benchmark_new/requirements.txt pypi
  • about-time =4.2.1=pypi_0
  • aiosignal =1.3.1=pypi_0
  • alabaster =0.7.16=pypi_0
  • alive-progress =3.1.5=pypi_0
  • anyio =4.2.0=pypi_0
  • asttokens =2.4.1=pypi_0
  • attrs =23.2.0=pypi_0
  • autograd =1.6.2=pypi_0
  • babel =2.14.0=pypi_0
  • beautifulsoup4 =4.12.2=pypi_0
  • black =22.3.0=pypi_0
  • blas =1.0=mkl
  • bleach =6.1.0=pypi_0
  • boto3 =1.34.19=pypi_0
  • botocore =1.34.19=pypi_0
  • botorch =0.9.5=pypi_0
  • brotli-python =1.0.9=py39h6a678d5_7
  • bzip2 =1.0.8=h7b6447c_0
  • ca-certificates =2023.12.12=h06a4308_0
  • certifi =2023.11.17=py39h06a4308_0
  • cffi =1.16.0=py39h5eee18b_0
  • chardet =5.2.0=pypi_0
  • charset-normalizer =3.3.2=pypi_0
  • click =8.1.7=pypi_0
  • cloudpickle =2.2.1=pypi_0
  • cma =3.2.2=pypi_0
  • comm =0.2.1=pypi_0
  • configspace =0.6.1=pypi_0
  • contextlib2 =21.6.0=pypi_0
  • contourpy =1.2.0=pypi_0
  • coolname =2.2.0=pypi_0
  • coverage =7.4.0=pypi_0
  • cramjam =2.8.0=pypi_0
  • cryptography =41.0.7=py39hdda0065_0
  • cuda-cudart =12.1.105=0
  • cuda-cupti =12.1.105=0
  • cuda-libraries =12.1.0=0
  • cuda-nvrtc =12.1.105=0
  • cuda-nvtx =12.1.105=0
  • cuda-opencl =12.3.101=0
  • cuda-runtime =12.1.0=0
  • cycler =0.12.1=pypi_0
  • datasets =1.8.0=pypi_0
  • debugpy =1.8.0=pypi_0
  • decorator =5.1.1=pypi_0
  • defusedxml =0.7.1=pypi_0
  • deprecated =1.2.14=pypi_0
  • dill =0.3.7=pypi_0
  • distlib =0.3.8=pypi_0
  • docker =7.0.0=pypi_0
  • docutils =0.20.1=pypi_0
  • exceptiongroup =1.2.0=pypi_0
  • executing =2.0.1=pypi_0
  • fastapi =0.95.2=pypi_0
  • fastjsonschema =2.19.1=pypi_0
  • fastparquet =0.8.1=pypi_0
  • ffmpeg =4.3=hf484d3e_0
  • filelock =3.9.0=pypi_0
  • flake8 =7.0.0=pypi_0
  • flatbuffers =23.5.26=pypi_0
  • fonttools =4.47.2=pypi_0
  • freetype =2.12.1=h4a9f257_0
  • frozenlist =1.4.1=pypi_0
  • fsspec =2023.12.2=pypi_0
  • future =0.18.3=pypi_0
  • giflib =5.2.1=h5eee18b_3
  • gmp =6.2.1=h295c915_3
  • gmpy2 =2.1.2=py39heeb90bb_0
  • gnutls =3.6.15=he1e5248_0
  • google-pasta =0.2.0=pypi_0
  • gpytorch =1.11=pypi_0
  • grapheme =0.6.0=pypi_0
  • grpcio =1.51.3=pypi_0
  • h11 =0.14.0=pypi_0
  • h5py =3.10.0=pypi_0
  • huggingface-hub =0.0.19=pypi_0
  • idna =3.6=pypi_0
  • imagesize =1.4.1=pypi_0
  • importlib-metadata =6.11.0=pypi_0
  • importlib-resources =6.1.1=pypi_0
  • iniconfig =2.0.0=pypi_0
  • intel-openmp =2023.1.0=hdb19cb5_46306
  • ipykernel =6.28.0=pypi_0
  • ipython =8.18.1=pypi_0
  • jaxtyping =0.2.25=pypi_0
  • jedi =0.19.1=pypi_0
  • jinja2 =3.1.3=pypi_0
  • jmespath =1.0.1=pypi_0
  • joblib =1.3.2=pypi_0
  • jpeg =9e=h5eee18b_1
  • jsonschema =4.20.0=pypi_0
  • jsonschema-specifications =2023.12.1=pypi_0
  • jupyter-client =8.6.0=pypi_0
  • jupyter-core =5.7.1=pypi_0
  • jupyterlab-pygments =0.3.0=pypi_0
  • kiwisolver =1.4.5=pypi_0
  • lame =3.100=h7b6447c_0
  • latexcodec =2.0.1=pypi_0
  • lcms2 =2.12=h3be6417_0
  • ld_impl_linux-64 =2.38=h1181459_1
  • lerc =3.0=h295c915_0
  • libcublas =12.1.0.26=0
  • libcufft =11.0.2.4=0
  • libcufile =1.8.1.2=0
  • libcurand =10.3.4.107=0
  • libcusolver =11.4.4.55=0
  • libcusparse =12.0.2.55=0
  • libdeflate =1.17=h5eee18b_1
  • libffi =3.4.4=h6a678d5_0
  • libgcc-ng =11.2.0=h1234567_1
  • libgomp =11.2.0=h1234567_1
  • libiconv =1.16=h7f8727e_2
  • libidn2 =2.3.4=h5eee18b_0
  • libjpeg-turbo =2.0.0=h9bf148f_0
  • libnpp =12.0.2.50=0
  • libnvjitlink =12.1.105=0
  • libnvjpeg =12.1.1.14=0
  • libpng =1.6.39=h5eee18b_0
  • libstdcxx-ng =11.2.0=h1234567_1
  • libtasn1 =4.19.0=h5eee18b_0
  • libtiff =4.5.1=h6a678d5_0
  • libunistring =0.9.10=h27cfd23_0
  • libwebp =1.3.2=h11a3e52_0
  • libwebp-base =1.3.2=h5eee18b_0
  • linear-operator =0.5.1=pypi_0
  • llvm-openmp =14.0.6=h9e868ea_0
  • lz4-c =1.9.4=h6a678d5_0
  • markdown-it-py =3.0.0=pypi_0
  • markupsafe =2.1.3=py39h5eee18b_0
  • matplotlib =3.8.2=pypi_0
  • matplotlib-inline =0.1.6=pypi_0
  • mccabe =0.7.0=pypi_0
  • mdit-py-plugins =0.4.0=pypi_0
  • mdurl =0.1.2=pypi_0
  • mistune =3.0.2=pypi_0
  • mkl =2023.1.0=h213fc3f_46344
  • mkl-service =2.4.0=py39h5eee18b_1
  • mkl_fft =1.3.8=py39h5eee18b_0
  • mkl_random =1.2.4=py39hdb19cb5_0
  • more-itertools =10.2.0=pypi_0
  • mpc =1.1.0=h10f8cd9_1
  • mpfr =4.0.2=hb69a4c5_1
  • mpmath =1.3.0=py39h06a4308_0
  • msgpack =1.0.7=pypi_0
  • multipledispatch =1.0.0=pypi_0
  • multiprocess =0.70.15=pypi_0
  • mypy-extensions =1.0.0=pypi_0
  • myst-parser =2.0.0=pypi_0
  • nbclient =0.9.0=pypi_0
  • nbconvert =7.14.1=pypi_0
  • nbformat =5.9.2=pypi_0
  • nbsphinx =0.9.3=pypi_0
  • ncurses =6.4=h6a678d5_0
  • nest-asyncio =1.5.9=pypi_0
  • nettle =3.7.3=hbbd107a_1
  • networkx =3.0=pypi_0
  • numpy =1.23.5=pypi_0
  • numpy-base =1.26.3=py39hb5e798b_0
  • nvidia-cublas-cu12 =12.1.3.1=pypi_0
  • nvidia-cuda-cupti-cu12 =12.1.105=pypi_0
  • nvidia-cuda-nvrtc-cu12 =12.1.105=pypi_0
  • nvidia-cuda-runtime-cu12 =12.1.105=pypi_0
  • nvidia-cudnn-cu12 =8.9.2.26=pypi_0
  • nvidia-cufft-cu12 =11.0.2.54=pypi_0
  • nvidia-curand-cu12 =10.3.2.106=pypi_0
  • nvidia-cusolver-cu12 =11.4.5.107=pypi_0
  • nvidia-cusparse-cu12 =12.1.0.106=pypi_0
  • nvidia-nccl-cu12 =2.18.1=pypi_0
  • nvidia-nvjitlink-cu12 =12.3.101=pypi_0
  • nvidia-nvtx-cu12 =12.1.105=pypi_0
  • onnxruntime =1.10.0=pypi_0
  • openh264 =2.1.1=h4ff587b_0
  • openjpeg =2.4.0=h3ad879b_0
  • openssl =3.0.12=h7f8727e_0
  • opt-einsum =3.3.0=pypi_0
  • packaging =23.2=pypi_0
  • pandas =2.1.4=pypi_0
  • pandocfilters =1.5.0=pypi_0
  • parso =0.8.3=pypi_0
  • pathos =0.3.1=pypi_0
  • pathspec =0.12.1=pypi_0
  • patsy =0.5.6=pypi_0
  • pexpect =4.9.0=pypi_0
  • pillow =10.2.0=pypi_0
  • pip =23.3.1=py39h06a4308_0
  • platformdirs =3.11.0=pypi_0
  • pluggy =1.3.0=pypi_0
  • pox =0.3.3=pypi_0
  • ppft =1.7.6.7=pypi_0
  • prompt-toolkit =3.0.43=pypi_0
  • protobuf =4.25.2=pypi_0
  • psutil =5.9.7=pypi_0
  • ptyprocess =0.7.0=pypi_0
  • pure-eval =0.2.2=pypi_0
  • pyaml =23.12.0=pypi_0
  • pyarrow =3.0.0=pypi_0
  • pybtex =0.24.0=pypi_0
  • pybtex-docutils =1.0.3=pypi_0
  • pycodestyle =2.11.1=pypi_0
  • pycparser =2.21=pyhd3eb1b0_0
  • pydantic =1.10.13=pypi_0
  • pyflakes =3.2.0=pypi_0
  • pygments =2.17.2=pypi_0
  • pymoo =0.6.1.1=pypi_0
  • pyopenssl =23.2.0=py39h06a4308_0
  • pypandoc-binary =1.12=pypi_0
  • pyparsing =3.1.1=pypi_0
  • pyro-api =0.1.2=pypi_0
  • pyro-ppl =1.8.6=pypi_0
  • pysocks =1.7.1=py39h06a4308_0
  • pytest =7.4.4=pypi_0
  • pytest-cov =4.1.0=pypi_0
  • pytest-timeout =2.2.0=pypi_0
  • python =3.9.18=h955ad1f_0
  • python-dateutil =2.8.2=pypi_0
  • pytorch =2.1.2=py3.9_cuda12.1_cudnn8.9.2_0
  • pytorch-cuda =12.1=ha16c6d3_5
  • pytorch-mutex =1.0=cuda
  • pytz =2023.3.post1=pypi_0
  • pyyaml =6.0.1=py39h5eee18b_0
  • pyzmq =25.1.2=pypi_0
  • ray =2.4.0=pypi_0
  • readline =8.2=h5eee18b_0
  • referencing =0.32.1=pypi_0
  • regex =2023.12.25=pypi_0
  • requests =2.31.0=py39h06a4308_0
  • rpds-py =0.17.1=pypi_0
  • s3fs =0.4.2=pypi_0
  • s3transfer =0.10.0=pypi_0
  • sacremoses =0.1.1=pypi_0
  • sagemaker =2.203.1=pypi_0
  • schema =0.7.5=pypi_0
  • scikit-learn =1.3.2=pypi_0
  • scikit-optimize =0.9.0=pypi_0
  • scipy =1.11.4=pypi_0
  • setuptools =68.2.2=py39h06a4308_0
  • six =1.16.0=pypi_0
  • smdebug-rulesconfig =1.0.1=pypi_0
  • sniffio =1.3.0=pypi_0
  • snowballstemmer =2.2.0=pypi_0
  • sortedcontainers =2.4.0=pypi_0
  • soupsieve =2.5=pypi_0
  • sphinx =7.2.6=pypi_0
  • sphinx-autodoc-typehints =1.25.2=pypi_0
  • sphinx-copybutton =0.5.2=pypi_0
  • sphinx-rtd-theme =2.0.0=pypi_0
  • sphinxcontrib-applehelp =1.0.8=pypi_0
  • sphinxcontrib-bibtex =2.6.2=pypi_0
  • sphinxcontrib-devhelp =1.0.6=pypi_0
  • sphinxcontrib-htmlhelp =2.0.5=pypi_0
  • sphinxcontrib-jquery =4.1=pypi_0
  • sphinxcontrib-jsmath =1.0.1=pypi_0
  • sphinxcontrib-qthelp =1.0.7=pypi_0
  • sphinxcontrib-serializinghtml =1.1.10=pypi_0
  • sqlite =3.41.2=h5eee18b_0
  • stack-data =0.6.3=pypi_0
  • starlette =0.27.0=pypi_0
  • statsmodels =0.14.1=pypi_0
  • sympy =1.12=py39h06a4308_0
  • syne-tune =0.10.0=dev_0
  • tabulate =0.9.0=pypi_0
  • tbb =2021.8.0=hdb19cb5_0
  • tblib =2.0.0=pypi_0
  • tensorboardx =2.6.2.2=pypi_0
  • threadpoolctl =3.2.0=pypi_0
  • tinycss2 =1.2.1=pypi_0
  • tk =8.6.12=h1ccaba5_0
  • tokenizers =0.10.3=pypi_0
  • tomli =2.0.1=pypi_0
  • torch =2.1.2=pypi_0
  • torchaudio =2.1.2
  • torchtriton =2.1.0=py39
  • torchvision =0.16.2
  • tornado =6.4=pypi_0
  • tqdm =4.49.0=pypi_0
  • traitlets =5.11.2=pypi_0
  • transformers =4.12.2=pypi_0
  • triton =2.1.0=pypi_0
  • typeguard =2.13.3=pypi_0
  • typing_extensions =4.9.0=py39h06a4308_0
  • tzdata =2023.4=pypi_0
  • ujson =5.9.0=pypi_0
  • urllib3 =1.26.18=py39h06a4308_0
  • uvicorn =0.22.0=pypi_0
  • virtualenv =20.21.0=pypi_0
  • wcwidth =0.2.13=pypi_0
  • webencodings =0.5.1=pypi_0
  • wheel =0.41.2=py39h06a4308_0
  • wrapt =1.16.0=pypi_0
  • xgboost =2.0.3=pypi_0
  • xxhash =3.4.1=pypi_0
  • xz =5.4.5=h5eee18b_0
  • yahpo-gym =1.0.1=pypi_0
  • yaml =0.2.5=h7b6447c_0
  • zipp =3.17.0=pypi_0
  • zlib =1.2.13=h5eee18b_0
  • zstd =1.5.5=hc292b87_0
benchmarking/nursery/benchmark_yahpo/requirements.txt pypi
  • syne-tune *
  • tqdm *
benchmarking/nursery/odsc_tutorial/transformer_wikitext2/code/requirements.txt pypi
  • filelock *
benchmarking/nursery/odsc_tutorial/transformer_wikitext2/local/requirements-synetune.txt pypi
  • syne-tune *
  • tqdm *
benchmarking/nursery/odsc_tutorial/transformer_wikitext2/sagemaker/requirements.txt pypi
  • syne-tune *
  • tqdm *
benchmarking/nursery/othpo/requirements_for_sagemaker.txt pypi
  • autograd >=1.3
  • boto3 ==1.26.49
  • botorch >=0.7.2
  • configspace ==0.6.1
  • matplotlib ==3.6.3
  • mrg32k3a ==1.0.0
  • numpy ==1.23.5
  • onnxruntime ==1.13.1
  • pandas ==1.5.2
  • pytest ==7.2.0
  • pyyaml ==6.0
  • sagemaker ==2.128.0
  • scipy >=1.3.3
  • simoptlib ==1.0.1
  • syne-tune *
  • xgboost ==1.7.3
  • yahpo-gym ==1.0.1
benchmarking/nursery/othpo/requirements_locally.txt pypi
  • autograd >=1.3
  • botorch >=0.7.2
  • configspace ==0.6.1
  • matplotlib ==3.6.3
  • mrg32k3a ==1.0.0
  • numpy ==1.23.5
  • onnxruntime ==1.13.1
  • pandas ==1.5.2
  • pytest ==7.2.0
  • pyyaml ==6.0
  • scipy >=1.3.3
  • simoptlib ==1.0.1
  • syne-tune *
  • xgboost ==1.7.3
  • yahpo-gym ==1.0.1
benchmarking/nursery/othpo/requirements_on_sagemaker.txt pypi
  • autograd >=1.3
  • botorch >=0.7.2
  • configspace ==0.6.1
  • matplotlib ==3.6.3
  • mrg32k3a ==1.0.0
  • numpy ==1.23.5
  • onnxruntime ==1.13.1
  • pandas ==1.5.2
  • pyyaml ==6.0
  • scipy >=1.3.3
  • simoptlib ==1.0.1
  • syne-tune *
  • xgboost ==1.7.3
  • yahpo-gym ==1.0.1
benchmarking/nursery/othpo/xgboost/requirements.txt pypi
  • pandas ==1.5.2
  • scikit-learn ==1.1.3
  • xgboost ==1.6.2
benchmarking/nursery/test_bolimit/requirements.txt pypi
  • syne-tune * test
  • tqdm * test
benchmarking/nursery/test_checkpoints/requirements-synetune.txt pypi
  • sortedcontainers * test
  • syne-tune * test
  • tqdm * test
benchmarking/training_scripts/finetune_transformer_glue/requirements.txt pypi
  • datasets ==1.8.0
  • transformers *
benchmarking/training_scripts/finetune_transformer_swag/requirements.txt pypi
  • datasets ==1.8.0
  • transformers *
benchmarking/training_scripts/lstm_wikitext2/requirements.txt pypi
  • filelock *
benchmarking/training_scripts/mlp_on_fashion_mnist/requirements.txt pypi
  • filelock *
  • torch *
  • torchvision *
benchmarking/training_scripts/resnet_cifar10/requirements.txt pypi
  • filelock *
  • tqdm *
benchmarking/training_scripts/transformer_wikitext2/requirements.txt pypi
  • filelock *
examples/training_scripts/constrained_hpo/requirements.txt pypi
  • scikit-learn *
examples/training_scripts/gluonts/requirements.txt pypi
  • gluonts ==0.9.5
examples/training_scripts/nasbench201/requirements.txt pypi
  • filelock *
examples/training_scripts/rl_cartpole/requirements.txt pypi
  • dm-tree ==0.1.8
  • gym ==0.23.1
  • opencv-python *
  • pygame ==2.1.2
  • ray ==2.2.0
  • tensorboardX ==2.5.1
  • tensorflow ==2.11.1
requirements-aws.txt pypi
  • PyYaml *
  • boto3 *
  • s3fs *
  • sagemaker >=2.112.0
  • ujson *
requirements-bore.txt pypi
  • GPy ==1.12.0
  • numpy >=1.16.0,<1.27.0
  • scikit-learn *
  • xgboost *
requirements-botorch.txt pypi
  • botorch >=0.7.2
requirements-dev.txt pypi
  • black ==22.3.0 development
  • flake8 * development
  • ipykernel * development
  • myst-parser * development
  • nbsphinx * development
  • pypandoc_binary * development
  • pytest * development
  • pytest-cov * development
  • pytest-timeout * development
  • sphinx <8.0.0 development
  • sphinx-autodoc-typehints * development
  • sphinx-rtd-theme * development
  • sphinx_copybutton * development
  • sphinxcontrib-bibtex * development
  • sphinxcontrib.jquery * development
  • traitlets <=5.11.2 development
  • wheel * development
requirements-gpsearchers.txt pypi
  • autograd >=1.3
  • scipy >=1.3.3
requirements-kde.txt pypi
  • statsmodels *
requirements-moo.txt pypi
  • pymoo >=0.6.0
  • scipy >=1.3.3
requirements-ray.txt pypi
  • ray >=2.0.0
  • scikit-learn *
  • scikit-optimize *
requirements-sklearn.txt pypi
  • scikit-learn *
requirements-smac.txt pypi
  • smac >=2.0
  • swig *
requirements-visual.txt pypi
  • matplotlib *
requirements.txt pypi
  • dill >=0.3.6
  • numpy >=1.16.0,<1.27.0
  • pandas *
  • sortedcontainers *
  • typing_extensions *
setup.py pypi
syne_tune/blackbox_repository/conversion_scripts/scripts/requirements-yahpo.txt pypi
  • configspace <=0.6.1
  • onnxruntime ==1.10.0
  • pandas *
  • pyyaml *
  • yahpo-gym *
syne_tune/blackbox_repository/requirements.txt pypi
  • fastparquet ==0.8.1
  • h5py *
  • numpy >=1.16.0,<1.24.0
  • pandas *
  • s3fs *
  • scikit-learn *
  • xgboost *
syne_tune.egg-info/requires.txt pypi
  • GPy ==1.12.0
  • PyYaml *
  • autograd >=1.3
  • black ==22.3.0
  • boto3 *
  • botorch >=0.7.2
  • configspace <=0.6.1
  • datasets ==1.8.0
  • dill >=0.3.6
  • fastparquet ==0.8.1
  • filelock *
  • flake8 *
  • h5py *
  • ipykernel *
  • matplotlib *
  • myst-parser *
  • nbsphinx *
  • numpy <1.27.0,>=1.16.0
  • numpy <1.24.0,>=1.16.0
  • onnxruntime ==1.10.0
  • pandas *
  • pymoo >=0.6.0
  • pypandoc_binary *
  • pytest *
  • pytest-cov *
  • pytest-timeout *
  • pyyaml *
  • ray >=2.0.0
  • s3fs *
  • sagemaker >=2.112.0
  • scikit-learn *
  • scikit-optimize *
  • scipy >=1.3.3
  • smac >=2.0
  • sortedcontainers *
  • sphinx <8.0.0
  • sphinx-autodoc-typehints *
  • sphinx-rtd-theme *
  • sphinx_copybutton *
  • sphinxcontrib-bibtex *
  • sphinxcontrib.jquery *
  • statsmodels *
  • swig *
  • torch *
  • torchvision *
  • tqdm *
  • traitlets <=5.11.2
  • transformers *
  • typing_extensions *
  • ujson *
  • wheel *
  • xgboost *
  • yahpo-gym *
tst/remote_launcher/folder1/requirements.txt pypi
  • filelock *