Applicable to: Customers using the AI Deployment product — experiment tracking, job runs, and ML repositories.If you use only AI Gateway and do not deploy jobs or log experiment runs, this change does not affect you.
What Is Changing
Starting with v0.156.0, dedicated support for logging and visualizing images and plots on experiment runs is removed.run.log_images()andrun.log_plots()are no longer supported for new runs.- The dedicated Images and Plots tabs on run detail pages are removed.
- All existing logged images and plots are automatically migrated to standard artifacts when you upgrade to v0.156.0. Migrated files appear under the Artifacts tab on the associated run.
Why This Change
Image and plot logging sees very limited adoption across job runs. For the typical job-run workflow — persisting training outputs, evaluation figures, or diagnostic files — standard artifacts already cover the same use case:- Save image or plot files to disk during your job.
- Log them with
run.log_artifact()andArtifactPath— passstepthe same way you did withlog_images()andlog_plots(). - Access them from the Artifacts tab on the run, or download them via the SDK.
What You Need to Do
Upgrade to v0.156.0
On upgrade, existing images and plots logged on prior runs are migrated to artifacts automatically. No manual data migration is required.
Update your scripts
Search your training scripts, notebooks, and job definitions for
log_images, log_plots, and any references to image or plot artifact types. Replace them with run.log_artifact() before your next job run on v0.156.0 (see examples below).Migrating plots
Before:Migrating images
Before:log_artifact reference.
If you have questions or need help migrating image and plot logging to artifacts, reach out to support@truefoundry.com — we’re happy to assist.