From d5e9f79b4ee5c9d11ba3166ef1b2e86e7412ae3a Mon Sep 17 00:00:00 2001 From: Ben Hoff Date: Thu, 26 Sep 2019 12:06:21 -0400 Subject: [PATCH] remove deprecated method call `from_ir` (#726) --- cvat/apps/auto_annotation/inference_engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cvat/apps/auto_annotation/inference_engine.py b/cvat/apps/auto_annotation/inference_engine.py index 94c977fa729..310e78c45be 100644 --- a/cvat/apps/auto_annotation/inference_engine.py +++ b/cvat/apps/auto_annotation/inference_engine.py @@ -37,4 +37,4 @@ def make_plugin(): def make_network(model, weights): - return IENetwork.from_ir(model = model, weights = weights) + return IENetwork(model = model, weights = weights)