oci-data-science-ai-samples
oci-data-science-ai-samples copied to clipboard
Fixed imports and code for AutoMLx 23.4.1v notebooks
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
The notebook runs fails on existing code with new automlx import. It required code modification in notebook for some features.
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.