oci-data-science-ai-samples icon indicating copy to clipboard operation
oci-data-science-ai-samples copied to clipboard

Fixed imports and code for AutoMLx 23.4.1v notebooks

Open dipatidar opened this issue 1 year ago • 3 comments
trafficstars

dipatidar avatar Jan 12 '24 18:01 dipatidar

This is not backward compatible, for people that use the existing conda packs it'll break.

rather than

import automlx

the suggestion was to do

try:
  import automlx
except ModuleNotFoundError:
  import automl

something like that so older conda packs will continue to work with the refreshed notebooks

darenr avatar Jan 12 '24 18:01 darenr

The notebook runs fails on existing code with new automlx import. It required code modification in notebook for some features.

dipatidar avatar Jan 29 '24 23:01 dipatidar

Just a heads up, you can review notebook changes like this using GitNotebooks.

e.g. this pull request https://gitnotebooks.com/oracle-samples/oci-data-science-ai-samples/pull/386

It's free for public repos, so might be helpful for y'all.

smith-kyle avatar Jan 31 '24 02:01 smith-kyle