-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yaml
68 lines (61 loc) · 1.8 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# 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: archaeoscape
channels:
- pytorch
- nvidia
- conda-forge
- defaults
# it is strongly recommended to specify versions of packages installed through conda
# to avoid situation when version-unspecified packages install their latest major
# versions which can sometimes break things
# current approach below keeps the dependencies in the same major versions across all
# users, but allows for different minor and patch versions of packages where backwards
# compatibility is usually guaranteed
dependencies:
#ML
- python=3.11
- pytorch=2.
- pytorch-cuda=11.8 # comment this out if using cpuonly
# - cpuonly # uncomment if you want a cpu-only installation
- torchvision=0.16
- lightning=2.1
- torchmetrics=1.2
- timm=0.9
- numpy=1.26
- scikit-learn=1.3
- scikit-image=0.22.*
- tabulate=0.9
- einops=0.7
#other
- hydra-core=1.3
- rich=13.7
- pre-commit=3.*
- pytest=7.*
# raster
- pandas=2.1
- geopandas=0.14.*
- opencv=4.7
- rasterio=1.3
- affine=2.4
- shapely=2.0
# other
- docopt
# --------- loggers --------- #
- wandb
# - neptune-client
# - mlflow
# - comet-ml
# - aim>=3.16.2 # no lower than 3.16.2, see https://github.com/aimhubio/aim/issues/2550
- tensorboardX
- pip>=23
- pip:
- hydra-optuna-sweeper
- hydra-colorlog
- rootutils
- triangle
- segmentation-models-pytorch