Skip to content

Commit

Permalink
Bump traceml version to v1.1.4
Browse files Browse the repository at this point in the history
 * Add extension to log_image_with_boxes
  • Loading branch information
polyaxon-ci committed Apr 11, 2024
1 parent 9f52e9c commit 0836dea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion traceml/tests/test_tracking/test_run_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ def test_log_image_with_boxes(self):
assert len(results.df.values) == 1

asset_file = get_asset_path(
self.run_path, kind=V1ArtifactKind.IMAGE, name="my_image"
self.run_path, kind=V1ArtifactKind.IMAGE, name="my_image", ext="png"
)
assert os.path.exists(asset_file) is True

Expand Down
2 changes: 1 addition & 1 deletion traceml/traceml/pkg.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME = "traceml"
VERSION = "1.1.3"
VERSION = "1.1.4"
DESC = (
"Engine for ML/Data tracking, visualization, dashboards, and model UI for Polyaxon."
)
Expand Down
1 change: 1 addition & 0 deletions traceml/traceml/tracking/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -960,6 +960,7 @@ def log_image_with_boxes(
kind=V1ArtifactKind.IMAGE,
name=name,
step=step,
ext="png",
)
asset_rel_path = os.path.relpath(asset_path, self._artifacts_path)
event_value = events_processors.image_boxes(
Expand Down

0 comments on commit 0836dea

Please sign in to comment.