-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathenvironment.yml
45 lines (36 loc) · 987 Bytes
/
environment.yml
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
name: nersemble
channels:
- nvidia/label/cuda-11.7.1
- pytorch
- conda-forge
dependencies:
- python=3.8
- pip # Otherwise, conda complains
# CUDA
- cudatoolkit
- cuda-nvcc
- cuda-libraries-dev # For cuda_runtime.h
- ninja
# Additional PyTorch
# - functorch
- torchinfo
- pip:
# Torch
- --extra-index-url https://download.pytorch.org/whl/cu117
- torch==2.0.1+cu117
- torchvision==0.15.2+cu117
- einops
- torch_efficient_distloss
# Nerfstudio
- nerfstudio==0.3.1
- -f https://nerfacc-bucket.s3.us-west-2.amazonaws.com/whl/torch-2.0.0_cu117.html
- nerfacc==0.5.2+pt20cu117 # pre-build wheel. Avoids compilation issues
# tinycudann
# - git+https://github.com/NVlabs/tiny-cuda-nn/#subdirectory=bindings/torch # Needs to be installed afterwards
# Custom packages for facilitating ML research
- dreifus==0.1.2
- elias==0.2.3
# Misc
- environs
- pyfvvdp
- connected-components-3d