Skip to content

Commit

Permalink
test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Advitya17 committed Mar 13, 2024
1 parent b36845f commit 014f771
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ def save(self, path):
:param path: The directory path to save the RAIInsights to.
:type path: str
"""
super(RAIVisionInsights, self).save(path.with_suffix(".keras"))
super(RAIVisionInsights, self).save(path)
# Save extracted features data
self._save_ext_data(path)
self._save_transformations(path)
Expand Down
2 changes: 1 addition & 1 deletion responsibleai_vision/tests/common_vision_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ def __call__(self, X):
return self.model(tmp)

def save(self, path):
self.model.save(path)
self.model.save(path + '.keras')

@staticmethod
def load(path):
Expand Down

0 comments on commit 014f771

Please sign in to comment.