-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
add mlflow-export-import #28135
Draft
EllaBootQC
wants to merge
9
commits into
conda-forge:main
Choose a base branch
from
EllaBootQC:mlflow-export-import
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
add mlflow-export-import #28135
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
d98d755
add mlflow-export-import
EllaBootQC a78fc16
fixes
EllaBootQC 1962f07
edits
EllaBootQC 029d670
add mlflow-export-import
EllaBootQC fa46063
skip win build
EllaBootQC 3149da4
don't skip win build
EllaBootQC a089d4e
add mlflow to host requirements
EllaBootQC 63b0225
different mlflow version
EllaBootQC 1c605d7
different mlflow version
EllaBootQC File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
context: | ||
name: mlflow-export-import | ||
version: "1.1.2" | ||
|
||
package: | ||
name: ${{ name|lower }} | ||
version: ${{ version }} | ||
|
||
source: | ||
url: https://github.com/mlflow/${{ name }}/archive/refs/tags/v${{ version }}.tar.gz | ||
sha256: 336bd0fe3a16ac2198774f89d2642df5d103d306a5a6d3b48f3eed90dbddf9c3 | ||
|
||
build: | ||
script: python -m pip install . -vv | ||
noarch: python | ||
number: 0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you need to add entrypoints for the following https://github.com/mlflow/mlflow-export-import/blob/a572e944ebee82fe9b37c5e7b35541d01c26253b/setup.py#L45-L65 as well: https://prefix-dev.github.io/rattler-build/latest/reference/recipe_file/#python-entry-points |
||
python: | ||
entry_points: | ||
- export-all = mlflow_export_import.bulk.export_all:main | ||
- import-all = mlflow_export_import.bulk.import_models:main | ||
- export-models = mlflow_export_import.bulk.export_models:main | ||
- import-models = mlflow_export_import.bulk.import_models:main | ||
- export-run = mlflow_export_import.run.export_run:main | ||
- import-run = mlflow_export_import.run.import_run:main | ||
- export-experiment = mlflow_export_import.experiment.export_experiment:main | ||
- import-experiment = mlflow_export_import.experiment.import_experiment:main | ||
- export-experiments = mlflow_export_import.bulk.export_experiments:main | ||
- import-experiments = mlflow_export_import.bulk.import_experiments:main | ||
- export-model = mlflow_export_import.model.export_model:main | ||
- import-model = mlflow_export_import.model.import_model:main | ||
- export-model-version = mlflow_export_import.model_version.export_model_version:main | ||
- import-model-version = mlflow_export_import.model_version.import_model_version:main | ||
- download-notebook = mlflow_export_import.notebook.download_notebook:main | ||
- copy-model-version = mlflow_export_import.copy.copy_model_version:main | ||
- copy-run = mlflow_export_import.copy.copy_run:main | ||
- get-model-signature = mlflow_export_import.tools.get_model_signature:main | ||
- set-model-signature = mlflow_export_import.tools.set_model_signature:main | ||
- list-model-versions-without-sigantures = mlflow_export_import.tools.list_model_versions_without_signatures:main | ||
- http-client = mlflow_export_import.client.http_client:main | ||
|
||
requirements: | ||
host: | ||
- pip | ||
- python >=3.8 | ||
- setuptools | ||
run: | ||
- python >=3.8 | ||
- mlflow >=2.9.2, <2.10.2 | ||
- databricks-cli ==0.18.0 | ||
- pandas >=1.5.2 | ||
- tabulate ==0.9.0 | ||
- wheel | ||
- pytest | ||
- pytest-html >=3.2.0 | ||
- shortuuid >=1.0.11 | ||
|
||
tests: | ||
- python: | ||
imports: | ||
- mlflow_export_import | ||
pip_check: true | ||
|
||
about: | ||
homepage: https://github.com/mlflow/mlflow-export-import | ||
summary: 'Tools to copy MLflow objects' | ||
description: | | ||
The MLflow Export Import package provides tools to copy MLflow objects (runs, experiments or registered models) from one MLflow tracking server (Databricks workspace) to another. Using the MLflow REST API, the tools export MLflow objects to an intermediate directory and then import them into the target tracking server. | ||
license: Apache-2.0 | ||
license_file: LICENSE.txt | ||
repository: https://github.com/mlflow/mlflow-export-import | ||
|
||
extra: | ||
recipe-maintainers: | ||
- EllaBootQC |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://prefix-dev.github.io/rattler-build/latest/tutorials/python/#a-python-only-package