Skip to content

Commit 408d0b3

Browse files
committed
Uncommented TBD code
1 parent fc05d71 commit 408d0b3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pipelines/deployment.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def start(self):
4848
self.backend_impl = self.load_backend()
4949
self.data = self.load_dataset()
5050

51-
# TBD self.latest_model = self._get_latest_model_from_registry()
51+
self.latest_model = self._get_latest_model_from_registry()
5252

5353
self.next(self.deployment)
5454

@@ -74,10 +74,10 @@ def deployment(self):
7474
logging.info("Model artifacts downloaded to %s ",
7575
self.model_artifacts)
7676

77-
# TBD self.backend_impl.deploy(
78-
# self.model_artifacts,
79-
# self.latest_model.version,
80-
# )
77+
self.backend_impl.deploy(
78+
self.model_artifacts,
79+
self.latest_model.version,
80+
)
8181

8282
self.next(self.inference)
8383

0 commit comments

Comments
 (0)