parent
e40100c5b7
commit
2a0c3d4dac
|
@ -326,9 +326,12 @@ def eval(model, valid_dataloader, post_process_class, eval_class):
|
||||||
if idx >= len(valid_dataloader):
|
if idx >= len(valid_dataloader):
|
||||||
break
|
break
|
||||||
images = batch[0]
|
images = batch[0]
|
||||||
others = batch[-4:]
|
|
||||||
start = time.time()
|
start = time.time()
|
||||||
preds = model(images, others)
|
if "SRN" in str(model.head):
|
||||||
|
others = batch[-4:]
|
||||||
|
preds = model(images, others)
|
||||||
|
else:
|
||||||
|
preds = model(images)
|
||||||
|
|
||||||
batch = [item.numpy() for item in batch]
|
batch = [item.numpy() for item in batch]
|
||||||
# Obtain usable results from post-processing methods
|
# Obtain usable results from post-processing methods
|
||||||
|
|
Loading…
Reference in New Issue