-
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.
reset initial step size after armijo step
- Loading branch information
1 parent
489ca3d
commit b1084a9
Showing
2 changed files
with
17 additions
and
0 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,16 @@ | ||
# 1. git clone & cd to your submission repository | ||
# 2. mount `.` to container `/workdir`: | ||
docker run --rm -it --gpus all -p 6006:6006 \ | ||
-v /path/to/data:/mnt/share/petric:ro \ | ||
-v .:/workdir -w /workdir synerbi/sirf:edge-gpu /bin/bash | ||
# 3. install metrics & GPU libraries | ||
conda install monai tensorboard tensorboardx jupytext cudatoolkit=11.8 | ||
pip uninstall torch # monai installs pytorch (CPU), so remove it | ||
pip install tensorflow[and-cuda]==2.14 # last to support cu118 | ||
pip install torch --index-url https://download.pytorch.org/whl/cu118 | ||
pip install git+https://github.com/TomographicImaging/Hackathon-000-Stochastic-QualityMetrics | ||
# 4. optionally, conda/pip/apt install environment.yml/requirements.txt/apt.txt | ||
# 5. run your submission | ||
python petric.py & | ||
# 6. optionally, serve logs at <http://localhost:6006> | ||
tensorboard --bind_all --port 6006 --logdir ./output |
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