This repository was archived by the owner on May 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSingularity.tf
More file actions
67 lines (48 loc) · 1.84 KB
/
Singularity.tf
File metadata and controls
67 lines (48 loc) · 1.84 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
Bootstrap: shub
From: ucr-singularity/cuda-9.0-base
%post
# TensorFlow
pip install --no-cache-dir tensorflow-gpu==1.10
# Deep Mind Sonnet
pip install --no-cache-dir dm-sonnet-gpu==1.17
# Theano
pip install --no-cache-dir Theano==1.0.1
# Keras
#pip install --no-cache-dir keras==2.1.5
pip install --no-cache-dir keras==2.2.1
# Pytorch, per pytorch.org recommendation
pip install --no-cache-dir https://download.pytorch.org/whl/cu90/torch-0.3.1-cp27-cp27mu-linux_x86_64.whl
pip install --no-cache-dir torchvision==0.2.0
# OpenCV from pip, including contrib. This makes the install MUCH faster.
# See https://pypi.python.org/pypi/opencv-contrib-python for capabilities
# and limitations.
pip install --no-cache-dir opencv-contrib-python
# Install Pydensecrf
pip install git+https://github.com/lucasb-eyer/pydensecrf.git
# Set locale in environment
echo 'export LC_ALL=C' >>$SINGULARITY_ENVIRONMENT
#Keras ml package
pip install --no-cache-dir keras_vggface
#For keras generator
pip install --no-cache-dir bcolz
#Neuro-Imaging package
pip install --no-cache-dir nibabel
pip install --no-cache-dir niftynet
pip install --no-cache-dir SimpleITK
#Parallel Processing
pip install --no-cache-dir joblib
#Progess
pip install --no-cache-dir tqdm
#Sklearn update
pip install --no-cache-dir scikit-learn==0.19.2
#Biomedical Denoising library
pip install --no-cache-dir csbdeep
#Dependencies for CSBDeep
pip install --no-cache-dir tifffile
#Uncompress package 7z
apt-get update && apt-get -y install p7zip-full p7zip-rar
apt-get -y install dtrx
#Cluster Analysis
pip install --no-cache-dir yellowbrick
# Deepdish
pip install --no-cache-dir deepdish