Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 678 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 678 Bytes

Internship2022

Mention to https://github.com/jocpae/clDice for Centerline loss and metric required for this project. Run using SLURM and Singularity.

  1. Create an empty singularity docker
$ singularity pull docker://ubuntu
  1. Once done, all libraries must be installed. To pursue that, we shall convert .SIF to SANDBOX, open it, and reconvert to SIF again, depicted in the following commands:
# SIF_FILE (SIF--> SANDBOX)
$ sudo singularity build --sandbox SANDBOX  

# (Open and write in SANDBOX (ex. install packages) )
$ sudo singularity shell --writable SANDBOX/ 

# (SANDBOX-->SIF)
$ sudo singularity build SIF_FILE SANDBOX

That's all folks!