Update README.md
Browse files
README.md
CHANGED
@@ -11,7 +11,8 @@ The Singularity container is designed for the prediction of abdominal tumors, sp
|
|
11 |
### 1-Download
|
12 |
Download the singularity container.
|
13 |
```
|
14 |
-
wget https://huggingface.co/qicq1c/DiffTumor/difftumor_final.sif
|
|
|
15 |
```
|
16 |
### 2-Data preparation
|
17 |
This is how `inputs_data` organizes
|
@@ -28,7 +29,7 @@ This is how `inputs_data` organizes
|
|
28 |
### 3-Inference
|
29 |
You can directly perform inference on your own data. Simply modify inputs_data to reflect your data path and adjust outputs_data to specify the desired output location for the segmentation results.
|
30 |
```
|
31 |
-
SINGULARITYENV_CUDA_VISIBLE_DEVICES=0 singularity run --nv -B $inputs_data:/workspace/inputs -B $outputs_data:/workspace/outputs
|
32 |
```
|
33 |
|
34 |
This is how `outputs_data` organizes
|
|
|
11 |
### 1-Download
|
12 |
Download the singularity container.
|
13 |
```
|
14 |
+
wget https://huggingface.co/qicq1c/DiffTumor/resolve/main/difftumor_final.sif?download=true
|
15 |
+
mv difftumor_final.sif?download=true difftumor.sif
|
16 |
```
|
17 |
### 2-Data preparation
|
18 |
This is how `inputs_data` organizes
|
|
|
29 |
### 3-Inference
|
30 |
You can directly perform inference on your own data. Simply modify inputs_data to reflect your data path and adjust outputs_data to specify the desired output location for the segmentation results.
|
31 |
```
|
32 |
+
SINGULARITYENV_CUDA_VISIBLE_DEVICES=0 singularity run --nv -B $inputs_data:/workspace/inputs -B $outputs_data:/workspace/outputs difftumor.sif
|
33 |
```
|
34 |
|
35 |
This is how `outputs_data` organizes
|