fix build failures and also update to scikit-learn OneHotEncoder sparse parameter to sparse_output for newer scikit-learn versions#175
Merged
imatiach-msft merged 1 commit intoAug 20, 2024
Conversation
imatiach-msft
force-pushed
the
ilmat/fix-ohe-sparse-param
branch
4 times, most recently
from
June 7, 2024 21:14
4691ec6 to
3cb2245
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #175 +/- ##
==========================================
- Coverage 41.66% 33.20% -8.46%
==========================================
Files 27 26 -1
Lines 1884 1864 -20
==========================================
- Hits 785 619 -166
- Misses 1099 1245 +146
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
imatiach-msft
force-pushed
the
ilmat/fix-ohe-sparse-param
branch
3 times, most recently
from
June 7, 2024 22:14
b88f27a to
485e61a
Compare
imatiach-msft
force-pushed
the
ilmat/fix-ohe-sparse-param
branch
11 times, most recently
from
August 20, 2024 19:54
63d192e to
4a04775
Compare
imatiach-msft
force-pushed
the
ilmat/fix-ohe-sparse-param
branch
2 times, most recently
from
August 20, 2024 20:38
d07a530 to
b851df7
Compare
…or newer scikit-learn versions
RubyZ10
approved these changes
Aug 20, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
fix build failures and also update to scikit-learn OneHotEncoder sparse parameter to sparse_output for newer scikit-learn versions
Contains several updates to latest azureml automl package, updates to use python 3.9 as default env in tests, and various updates to newer packages to resolve test failures.
Copilot summary:
This pull request includes various updates to the CI workflows, dependencies, and test configurations to improve compatibility and functionality. The most important changes focus on updating Python and package versions, modifying CI workflows, and addressing compatibility issues in the codebase.
CI Workflow Updates:
.github/workflows/CI-python-AutoML.yml: LimitedoperatingSystemtoubuntu-latestand updatedpythonVersionto3.9. Updated numpy and pytorch installation commands. Removed unnecessary dependencies installation steps. [1] [2].github/workflows/CI-python.yml: UpdatedpythonVersionto include only3.9and3.10. Added installation steps for backwards-compatible keras for transformers. [1] [2].github/workflows/CI-python-minimal.yml: Added a step to installlibompon MacOS using Homebrew.Dependency Updates:
requirements-dev.txtandrequirements-automl.txt: Updatedtransformersversion constraint and removedazureml-automl-core. [1] [2] [3] [4]python/setup.py: Addedpackagingand restrictednumpyto versions below2.0.0.Code Compatibility:
python/ml_wrappers/dataset/dataset_wrapper.py: Added version check forsklearnto handle changes inOneHotEncoderparameters.tests/automl/test_automl_image_model_wrapper.pyandtests/automl/test_automl_image_object_detection_model_wrapper.py: Updated Python version constraints and package versions for compatibility withazureml-automl-dnn-vision. [1] [2] [3] [4]Test Configuration:
tests/main/test_model_wrapper.pyandtests/main/test_tf_model_wrapper.py: Skipped tests for Keras API due to compatibility issues with the latest TensorFlow. [1] [2]tests/main/test_text_model_wrapper.py: Skipped test for transformers model due to changes in text pair support.Miscellaneous:
tests/common_vision_utils.pyfor downloading datasets. [1] [2] [3]