-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare to compare AUC for BNN and linmod
- Loading branch information
Showing
4 changed files
with
54 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
FROM ubuntu:20.04 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
ENV TZ=Europe/Berlin | ||
|
||
RUN apt update \ | ||
&& apt-get install -y \ | ||
g++ \ | ||
cmake \ | ||
libatlas-base-dev \ | ||
python3 \ | ||
python3-dev \ | ||
python3-pip \ | ||
swig \ | ||
git\ | ||
libhdf5-serial-dev\ | ||
&& ln -sf /usr/bin/swig4.0 /usr/bin/swig | ||
|
||
RUN pip3 install python-libsbml>=5.17.0 numpy | ||
|
||
COPY container_files.tar.gz /tmp | ||
|
||
RUN pip3 install -U --upgrade pip wheel \ | ||
&& mkdir -p /tmp/container_files/ \ | ||
&& cd /tmp/container_files \ | ||
&& tar -xzf ../container_files.tar.gz | ||
|
||
RUN pip3 install aesara arviz pymc==5.1.1 theano numpy matplotlib scipy pandas seaborn arviz jupyter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters