Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nested Exif Metadata support + Gate fixes for py 3.7 and keras version #2545

Merged
merged 25 commits into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test fixes
  • Loading branch information
Advitya17 committed Mar 13, 2024
commit 014f7716878be6e28d5487d3975fe56ec9ecc35d
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
Loading