-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
40 lines (36 loc) · 849 Bytes
/
Copy pathenvironment.yml
File metadata and controls
40 lines (36 loc) · 849 Bytes
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
# Conda environment for ModelLens.
#
# Usage:
# conda env create -f environment.yml
# conda activate modellens
#
# Notes:
# * The PyTorch wheel below targets CUDA 12.1. If your driver is older, swap
# `pytorch-cuda=12.1` for `pytorch-cuda=11.8` (or use the CPU build by
# removing pytorch-cuda and the `pytorch` channel).
# * `wandb` is optional; set `use_wandb: False` in the YAML config if you
# do not want to log to Weights & Biases.
name: modellens
channels:
- pytorch
- nvidia
- conda-forge
- defaults
dependencies:
- python=3.10
- pip>=24.0
# Numerics
- numpy>=1.24,<2.0
- pandas>=2.0
- scipy>=1.11
- scikit-learn>=1.3
# Deep learning
- pytorch>=2.1
- pytorch-cuda=12.1
- torchvision
# Utilities
- pyyaml>=6.0
- tqdm>=4.65
- pip:
- wandb>=0.16
- huggingface-hub>=0.20