We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc05d71 commit 408d0b3Copy full SHA for 408d0b3
pipelines/deployment.py
@@ -48,7 +48,7 @@ def start(self):
48
self.backend_impl = self.load_backend()
49
self.data = self.load_dataset()
50
51
- # TBD self.latest_model = self._get_latest_model_from_registry()
+ self.latest_model = self._get_latest_model_from_registry()
52
53
self.next(self.deployment)
54
@@ -74,10 +74,10 @@ def deployment(self):
74
logging.info("Model artifacts downloaded to %s ",
75
self.model_artifacts)
76
77
- # TBD self.backend_impl.deploy(
78
- # self.model_artifacts,
79
- # self.latest_model.version,
80
- # )
+ self.backend_impl.deploy(
+ self.model_artifacts,
+ self.latest_model.version,
+ )
81
82
self.next(self.inference)
83
0 commit comments