-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.yaml
53 lines (50 loc) · 1.09 KB
/
environment.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# reasons you might want to use `environment.yaml` instead of `requirements.txt`:
# - pip installs packages in a loop, without ensuring dependencies across all packages
# are fulfilled simultaneously, but conda achieves proper dependency control across
# all packages
# - conda allows for installing packages without requiring certain compilers or
# libraries to be available in the system, since it installs precompiled binaries
name: marmosets
channels:
- pytorch
- https://www.idiap.ch/software/bob/conda
- conda-forge
- defaults
dependencies:
- python=3.9
- lightning=2.*
- torchmetrics=0.*
- hydra-core=1.*
- rich=13.*
- pre-commit=3.*
- pytest=7.*
- bob.extension=7.0
- scikit-learn
- wandb
- joblib
- dask-jobqueue
- gridtk
- numpy
- matplotlib
- seaborn
- pandas
- tqdm
- pyrootutils
- ipykernel
- ipywidgets
- docstring_parser
- pytest
- sphinx
- rich
- sh
- fastapi
- pydantic
- lxml
- accelerate
- pip>=23
- pip:
- hydra-optuna-sweeper
- hydra-colorlog
- ipdb
- transformers
- torchlibrosa