qicq1c commited on
Commit
6494969
·
verified ·
1 Parent(s): 5fc88a9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md CHANGED
@@ -1,3 +1,15 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ Singularity container for abdominal tumor (liver, pancreas and kidney) prediction. The segmentation model used from [DiffTumor](https://github.com/MrGiovanni/DiffTumor).
6
+
7
+ Download the Singularity container.
8
+ ```
9
+ wget https://huggingface.co/qicq1c/DiffTumor/difftumor_final.sif
10
+ ```
11
+ You can directly inference on your own data. Just modify `inputs_data` into your data path, and modify 'outputs_data' as where you want output the segmentation results.
12
+ ```
13
+ SINGULARITYENV_CUDA_VISIBLE_DEVICES=0 singularity run --nv -B $inputs_data:/workspace/inputs -B $outputs_data:/workspace/outputs difftumor_final.sif
14
+ ```
15
+