We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56ee2cc commit 5111455Copy full SHA for 5111455
2 files changed
src/baseline/v2/inference/docker/inference.py
@@ -1,4 +1,7 @@
1
import argparse
2
+import time
3
+import warnings
4
+
5
import torch
6
import nibabel as nib
7
from pathlib import Path
@@ -14,7 +17,8 @@
14
17
)
15
18
16
19
from models.unet import build_model
-import time
20
21
+warnings.filterwarnings("ignore")
22
23
# -----------------------------
24
# ARGUMENTS
src/baseline/v2/inference/docker/requirments.txt
@@ -1,3 +1,4 @@
monai==1.3.0
+torch==2.1.0
nibabel
tqdm
0 commit comments