-
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.
investigations and dockerfile to finallise PETRIC installation
- Loading branch information
Showing
4 changed files
with
284 additions
and
257 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,12 @@ | ||
# syntax=docker/dockerfile:1 | ||
ARG BASE_CONTAINER=ghcr.io/synerbi/sirf:edge-gpu | ||
FROM ${BASE_CONTAINER} AS base | ||
|
||
RUN conda install -y monai tensorboard tensorboardx jupytext cudatoolkit=11.8 | ||
# monai installs pytorch (CPU), so remove it | ||
RUN pip uninstall -y torch | ||
# last to support cu118 | ||
RUN pip install tensorflow[and-cuda]==2.14 | ||
RUN pip install torch --index-url https://download.pytorch.org/whl/cu118 | ||
RUN pip install git+https://github.com/TomographicImaging/Hackathon-000-Stochastic-QualityMetrics | ||
RUN pip install pysnooper |
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 @@ | ||
main_submission.py |
Oops, something went wrong.