Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Autologging functionality for scikit-learn integration with XGBoost (Part 1) #4954

Merged
merged 13 commits into from Nov 10, 2021

Conversation

jwyyy
Copy link
Contributor

@jwyyy jwyyy commented Oct 28, 2021

Signed-off-by: Junwen Yao jwyiao@gmail.com

What changes are proposed in this pull request?

This is the first PR to add autologging for XGBoost sklearn models. It revises model saving / loading and adds model_class to specify XGBoost model class, such as Booster, or XGBRegressor.

A separate PR will be made to add autologging for XGBoost sklearn models using mlflow.sklearn routine.

(Draft + discussion: #4885)

How is this patch tested?

New test functions are added. See PR files.

Release Notes

Is this a user-facing change?

  • No. You can skip the rest of this section.
  • Yes. Give a description of this change to be included in the release notes for MLflow users.

This PR will enable saving / loading XGBoost models, including sklearn models, with model class specification.
Functions save_model() / load_model() in mlflow.xgboost can be used as before.

What component(s), interfaces, languages, and integrations does this PR affect?

Components

  • area/artifacts: Artifact stores and artifact logging
  • area/build: Build and test infrastructure for MLflow
  • area/docs: MLflow documentation pages
  • area/examples: Example code
  • area/model-registry: Model Registry service, APIs, and the fluent client calls for Model Registry
  • area/models: MLmodel format, model serialization/deserialization, flavors
  • area/projects: MLproject format, project running backends
  • area/scoring: MLflow Model server, model deployment tools, Spark UDFs
  • area/server-infra: MLflow Tracking server backend
  • area/tracking: Tracking Service, tracking client APIs, autologging

Interface

  • area/uiux: Front-end, user experience, plotting, JavaScript, JavaScript dev server
  • area/docker: Docker use across MLflow's components, such as MLflow Projects and MLflow Models
  • area/sqlalchemy: Use of SQLAlchemy in the Tracking Service or Model Registry
  • area/windows: Windows support

Language

  • language/r: R APIs and clients
  • language/java: Java APIs and clients
  • language/new: Proposals for new client languages

Integrations

  • integrations/azure: Azure and Azure ML integrations
  • integrations/sagemaker: SageMaker integrations
  • integrations/databricks: Databricks integrations

How should the PR be classified in the release notes? Choose one:

  • rn/breaking-change - The PR will be mentioned in the "Breaking Changes" section
  • rn/none - No description will be included. The PR will be mentioned only by the PR number in the "Small Bugfixes and Documentation Updates" section
  • rn/feature - A new user-facing feature worth mentioning in the release notes
  • rn/bug-fix - A user-facing bug fix worth mentioning in the release notes
  • rn/documentation - A user-facing documentation change worth mentioning in the release notes

Signed-off-by: Junwen Yao <jwyiao@gmail.com>
@github-actions github-actions bot added area/artifacts Artifact stores and artifact logging area/models MLmodel format, model serialization/deserialization, flavors labels Oct 28, 2021
@jwyyy
Copy link
Contributor Author

jwyyy commented Oct 28, 2021

Hi @dbczumar, as per our discussion, I separate the autologging functionality and model saving / loading with model class specification into two PRs. This is the first one to address model saving / loading. Please let me know if I missed anything. Thanks!

@github-actions github-actions bot added rn/documentation Mention under Documentation Changes in Changelogs. rn/feature Mention under Features in Changelogs. and removed rn/documentation Mention under Documentation Changes in Changelogs. labels Oct 28, 2021
Signed-off-by: Junwen Yao <jwyiao@gmail.com>
@jwyyy jwyyy requested a review from harupy October 28, 2021 15:21
mlflow/xgboost.py Outdated Show resolved Hide resolved
mlflow/xgboost.py Outdated Show resolved Hide resolved
mlflow/xgboost.py Outdated Show resolved Hide resolved
Copy link
Collaborator

@dbczumar dbczumar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jwyyy Looks awesome! I left a few tiny comments - I think this is very close!

Signed-off-by: Junwen Yao <jwyiao@gmail.com>
@jwyyy
Copy link
Contributor Author

jwyyy commented Oct 30, 2021

Hi @dbczumar @harupy, thank you for your feedback! I updated this PR and doc according to your suggestions. Please let me know if they look good. Thanks!

mlflow/xgboost.py Outdated Show resolved Hide resolved
mlflow/xgboost.py Outdated Show resolved Hide resolved
Signed-off-by: Junwen Yao <jwyiao@gmail.com>
@jwyyy
Copy link
Contributor Author

jwyyy commented Nov 2, 2021

Hi @harupy @dbczumar, thank you for initializing the auto check! According to the error messages, two unsuccessful checks were due to network connection exception, not related to the changes in this PR. I am not sure if I can fix these two problems efficiently. Can you take a look and re-try the check? Thanks! Also please let me know if the latest commit look good.

mlflow/xgboost.py Outdated Show resolved Hide resolved
Signed-off-by: Junwen Yao <jwyiao@gmail.com>
Signed-off-by: Junwen Yao <jwyiao@gmail.com>
@jwyyy jwyyy requested review from harupy and dbczumar November 4, 2021 23:45
@jwyyy
Copy link
Contributor Author

jwyyy commented Nov 7, 2021

Hi @harupy @dbczumar, I notice that this PR #4997 tries to add a new argument to load_model() in every flavor. This will have an impact on how we handle model loading in mlflow.xgboost (although the revision should be very easy). I am wondering which PR will be addressed first. Or maybe we can directly add the xgboost part in this PR. Please let you know your plan / ideas. Thanks!

(The previous failed check (35/36) was due to Keras 2.7 compatibility, which should be fixed now.)

@harupy
Copy link
Member

harupy commented Nov 7, 2021

I notice that this PR #4997 tries to add a new argument to load_model() in every flavor.

Yes it does, but the new argument doesn't change how to load the model, it just allows users to determine where to load the model. Therefore, it should not conflict with this PR.

mlflow/xgboost.py Outdated Show resolved Hide resolved
Signed-off-by: Junwen Yao <jwyiao@gmail.com>
Signed-off-by: Junwen Yao <jwyiao@gmail.com>
Signed-off-by: Junwen Yao <jwyiao@gmail.com>
Signed-off-by: Junwen Yao <jwyiao@gmail.com>
mlflow/xgboost.py Outdated Show resolved Hide resolved
Copy link
Member

@harupy harupy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me once #4954 (comment) is addressed!

mlflow/xgboost.py Outdated Show resolved Hide resolved
Signed-off-by: Junwen Yao <jwyiao@gmail.com>
@jwyyy
Copy link
Contributor Author

jwyyy commented Nov 9, 2021

Looks good to me once #4954 (comment) is addressed!

@harupy I just updated the comments in this PR, including #4954 (review).

@jwyyy
Copy link
Contributor Author

jwyyy commented Nov 9, 2021

@harupy @dbczumar Thank you very much for your feedback and suggestions! It seems we are at the final stage of this PR. Once it is merged, I will make the second PR which completes the autologging for XGBoost sklearn models based on our previous discussion. It should be ready within the next few days. Meanwhile I will also submit the first PR for LightGBM models (similar to this PR). Thanks again!

Copy link
Collaborator

@dbczumar dbczumar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM! Thanks so much @jwyyy !

@jwyyy
Copy link
Contributor Author

jwyyy commented Nov 10, 2021

Two failed tests seem unrelated to this PR. The error messages are the same as unsuccessful checks in recent commits to master #5032 #5031 #4999 #5029.

@harupy
Copy link
Member

harupy commented Nov 10, 2021

Two failed tests seem unrelated to this PR.

Yep, we're already investigating them. Let's merge this PR!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/artifacts Artifact stores and artifact logging area/models MLmodel format, model serialization/deserialization, flavors rn/feature Mention under Features in Changelogs.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants