-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathenvironment.yml
More file actions
64 lines (52 loc) · 1.36 KB
/
environment.yml
File metadata and controls
64 lines (52 loc) · 1.36 KB
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
name: atomica-env
channels:
- pytorch
- nvidia
- conda-forge
- defaults
dependencies:
# Python version
- python=3.11
# PyTorch with CUDA 11.8
- pytorch==2.1.1
- pytorch-cuda=11.8
# Core scientific computing (faster from conda)
- numpy==1.26.4
- scipy==1.13.1
- pandas==2.2.3
- scikit-learn==1.5.2
# Visualization
- matplotlib==3.9.2
- seaborn==0.13.2
- plotly==5.24.1
# Utilities
- networkx==3.2.1
- tqdm==4.66.5
- joblib==1.4.2
- sympy==1.13.3
# Development tools
- pytest
- jupyter
- ipywidgets
# pip dependencies (packages not available or better from pip)
- pip
- pip:
# PyTorch Geometric dependencies (need special wheel index)
- torch-scatter==2.1.2 --find-links https://pytorch-geometric.com/whl/torch-2.1.1+cu118.html
- torch-cluster==1.6.3 --find-links https://pytorch-geometric.com/whl/torch-2.1.1+cu118.html
# Chemistry and structure libraries (not in conda or better from pip)
- rdkit-pypi==2022.9.5
- openbabel-wheel==3.1.1.20
- biopython==1.84
- biotite==0.40.0
- e3nn==0.5.1
# Data processing
- pyarrow==21.0.0
- orjson==3.10.16
# ML utilities
- umap-learn==0.5.6
# Logging and experiment tracking
- wandb==0.18.2
- tensorboard==2.18.0
# ATOMICA package (installed separately as editable)
# -e .