fast-autoaugment
fast-autoaugment copied to clipboard
Packages versions
Having prepared environment.yml
with:
name: fast-aa
channels:
- conda-forge
- defaults
dependencies:
- python=3.6.9
- pytorch=1.2.0
- torchvision=0.4.0
- cudatoolkit=10
- pip
- pip:
- git+https://github.com/wbaek/theconf@de32022f8c0651a043dc812d17194cdfd62066e8
- git+https://github.com/ildoonet/pytorch-gradual-warmup-lr.git@08f7d5e
- git+https://github.com/ildoonet/pystopwatch2.git
- git+https://github.com/hyperopt/hyperopt.git
- pretrainedmodels
- gorilla
- tabulate
- pandas
- tqdm
- tensorboardx
- sklearn
- ray
- psutil
- setproctitle
- requests
and using search.py
with:
python FastAutoAugment/search.py -c confs/wresnet40x2_cifar.yaml
I keep receiving warnings or errors on wrong or missing package, e.g.
HyperOptSearch DeprecationWarning: This class has been moved.
Could you be able to share validated package versions ?
Having prepared
environment.yml
with:name: fast-aa channels: - conda-forge - defaults dependencies: - python=3.6.9 - pytorch=1.2.0 - torchvision=0.4.0 - cudatoolkit=10 - pip - pip: - git+https://github.com/wbaek/theconf@de32022f8c0651a043dc812d17194cdfd62066e8 - git+https://github.com/ildoonet/pytorch-gradual-warmup-lr.git@08f7d5e - git+https://github.com/ildoonet/pystopwatch2.git - git+https://github.com/hyperopt/hyperopt.git - pretrainedmodels - gorilla - tabulate - pandas - tqdm - tensorboardx - sklearn - ray - psutil - setproctitle - requests
and using
search.py
with:python FastAutoAugment/search.py -c confs/wresnet40x2_cifar.yaml
I keep receiving warnings or errors on wrong or missing package, e.g.
HyperOptSearch DeprecationWarning: This class has been moved.
Could you be able to share validated package versions ?
you can use from ray.tune.suggest.hyperopt import HyperOptSearch replace # from ray.tune.suggest import HyperOptSearch
Thanks @xiesong521 but ray
framework has changed a lot in HyperOptSearch
, thus I had to stick to an old version 0.6.5
. Anyway it would be nice if we could see proper versions of all packages in e.g. requirements.txt
Hello, I have been troubled by various package versions recently. I wonder if you have found a package version that can run code. Thank you very much.