-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenvironment-cuda.yml
More file actions
71 lines (66 loc) · 1.63 KB
/
environment-cuda.yml
File metadata and controls
71 lines (66 loc) · 1.63 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
65
66
67
68
69
70
71
name: bmed365-cuda
channels:
- conda-forge
dependencies:
- python=3.11
- ipython
- ipykernel
- ipywidgets
- pandas
- matplotlib
- seaborn
- jupyter
- jupyterlab
- git
- pip
- pip:
- gdown
- pooch
- pycaret
- shap
- catboost
- xgboost
- pyreadstat
- statsmodels
- pingouin
- voila
- scikit-learn
- scikit-image
- SimpleITK
- itkwidgets
- imageio
- pydicom
- dcm2niix
- readimc
- tiffile
- nilearn
- networkx
- dipy
- templateflow
- openpyxl
- pygraphviz # Lab1
- pydot # Lab1
- python-louvain # Lab1
- pytorch_lightning # Lab2
- openai
- llm
- torch-geometric
- hyperopt
# TabPFN # https://github.com/PriorLabs/tabpfn
- tabpfn
- "git+https://github.com/PriorLabs/TabPFN.git#egg=tabpfn[dev]"
- "git+https://github.com/priorlabs/tabpfn-extensions.git#egg=tabpfn-extensions"
- ucimlrepo # UC Irivine ML repository
- streamlit
## Configure the Conda-environment bmed365-cuda for data analysis, computational imaging and modeling (only once):
# conda env create -f environment-cuda.yml
## To make a BMED365-CUDA kernel (optional):
# python -m ipykernel install --user --name bmed365-cuda --display-name "BMED365-CUDA"
## To activate the BMED365-CUDA conda environment:
# conda activate bmed365-cuda
## To update the bmed365-cuda conda environment:
# conda env update -f environment-cuda.yml
## To remove and reinstall the bmed365-cuda environment (if installation problems):
# conda deactivate
# conda env remove -n bmed65-cuda
# conda env create -f environment-cuda.yml