Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanwharris committed Sep 3, 2021
1 parent 9ac1048 commit db70df5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/image/detection/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def test_init():
dl = model.process_predict_dataset(ds, batch_size=batch_size)
data = next(iter(dl))

out = model(data)
out = model.forward(data[DefaultDataKeys.INPUT])

assert len(out) == batch_size
assert all(isinstance(res, dict) for res in out)
Expand Down

0 comments on commit db70df5

Please sign in to comment.