metaflow

Build and manage real-life ML, AI, and data science projects with ease!

APACHE-2.0 License

Downloads
903.6K
Stars
7.5K
Committers
79

Bot releases are visible (Hide)

metaflow - Metaflow 2.7.12 (Sep 26 2022)

Published by savingoyal about 2 years ago

The Metaflow 2.7.12 release is a minor release

What's Changed

Full Changelog: https://github.com/Netflix/metaflow/compare/2.7.11...2.7.12

metaflow - Metaflow 2.7.11 (Sep 15 2022)

Published by oavdeev about 2 years ago

The Metaflow 2.7.11 release is a minor release

Fixes

New Contributors

Full Changelog: https://github.com/Netflix/metaflow/compare/2.7.10...2.7.11

metaflow - Metaflow 2.7.10

Published by romain-intel about 2 years ago

What's Changed

Full Changelog: https://github.com/Netflix/metaflow/compare/2.7.9...2.7.10

metaflow - Metaflow 2.7.9 (Sep 5 2022)

Published by savingoyal about 2 years ago

What's Changed

Full Changelog: https://github.com/Netflix/metaflow/compare/2.7.8...2.7.9

metaflow - Metaflow 2.7.8 (Sep 3 2022)

Published by savingoyal about 2 years ago

What's Changed

Full Changelog: https://github.com/Netflix/metaflow/compare/2.7.7...2.7.8

metaflow - Metaflow 2.7.7 (Aug 24 2022)

Published by oavdeev about 2 years ago

Metaflow 2.7.7 Release Notes

The Metaflow 2.7.7 release is a minor release

Fixes:

Full Changelog: https://github.com/Netflix/metaflow/compare/2.7.6...2.7.7

metaflow - 2.7.6

Published by romain-intel about 2 years ago

What's Changed

Full Changelog: https://github.com/Netflix/metaflow/compare/2.7.5...2.7.6

metaflow - 2.7.5

Published by romain-intel about 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/Netflix/metaflow/compare/2.7.4...2.7.5

metaflow - 2.7.4 (Aug 2nd, 2022)

Published by savingoyal about 2 years ago

What's Changed

Full Changelog: https://github.com/Netflix/metaflow/compare/2.7.3...2.7.4

metaflow - Metaflow 2.7.3 (Jul 28 2022)

Published by oavdeev about 2 years ago

Metaflow 2.7.3 Release Notes

The Metaflow 2.7.3 release is a minor release

Fixes

Improvements

Full Changelog: https://github.com/Netflix/metaflow/compare/2.7.2...2.7.3

metaflow -

Published by oavdeev over 2 years ago

Metaflow 2.7.2 Release Notes

Metaflow 2.7.2 is a minor release

Features

Full Changelog: https://github.com/Netflix/metaflow/compare/2.7.1...2.7.2

metaflow - Metaflow 2.7.1 Release Notes

Published by romain-intel over 2 years ago

This is a patch release addressing a behavior of the environment escape mechanism.

Bug Fixes

  • Previously, if the environment escape mechanism provided a package, a failure would occur if that package was also present in the inner environment. This is now changed and, in that case, the package present is used and the environment escape mechanism is not used.

Full Changelog: https://github.com/Netflix/metaflow/compare/2.7.0...2.7.1

metaflow - Metaflow 2.7.0 Release Notes

Published by romain-intel over 2 years ago

This is a minor release which primarily adds the ability to do runtime tagging.

Features

  • Adds the ability to mutate a run's tags during or after a run. A CLI tool is provided (tag) as well as methods in the client add_tags, replace_tags and remove_tags. If using the Metaflow Metadata service, a version greater than 2.3.0 is required to use this feature.

Full Changelog: https://github.com/Netflix/metaflow/compare/2.6.3...2.7.0

metaflow - 2.6.3 (May 26, 2022)

Published by oavdeev over 2 years ago

Metaflow 2.6.3 Release Notes

The Metaflow 2.6.3 release is a minor release

Bug Fixes

Full Changelog: https://github.com/Netflix/metaflow/compare/2.6.2...2.6.3

metaflow - 2.6.2 (May 25, 2022)

Published by oavdeev over 2 years ago

Metaflow 2.6.2 Release Notes

The Metaflow 2.6.2 release is a minor release

Features

  • Support setting default secrets for @kubernetes (#1048 ). Metaflow allows you mount secrets in Kubernetes containers created by tasks. Now you can specify a set of secrets to be mounted by default via METAFLOW_KUBERNETES_SECRETS configuration option, in addition to existing @kubernetes(secrets="...") API.

Fixes

  • When using --run-id-file, the file is now written prior to execution when resuming a flow (#1051). That matches how run command behaves already.

Full Changelog: https://github.com/Netflix/metaflow/compare/2.6.1...2.6.2

metaflow - 2.6.1 (May 13, 2022)

Published by oavdeev over 2 years ago

Metaflow 2.6.1 Release Notes

The Metaflow 2.6.1 release is a minor release.

Features

Bug fixes

Full Changelog: https://github.com/Netflix/metaflow/compare/2.6.0...2.6.1

metaflow - 2.6.0 (Apr 25, 2022)

Published by savingoyal over 2 years ago

Metaflow 2.6.0 Release Notes

The Metaflow 2.6.0 release is a minor release and introduces Metaflow's integration with Kubernetes and Argo Workflows

  • Features
    • Add capability to launch Metaflow tasks on Kubernetes and schedule Metaflow flows with Argo Workflows.
    • Expose tags in current object.

Features

Add capability to launch Metaflow tasks on Kubernetes and schedule Metaflow flows with Argo Workflows.

This release enables brand new capabilities for Metaflow on top of Kubernetes. You can now run --with kubernetes all or parts of any Metaflow flow on top of any Kubernetes cluster from your workstation. To execute your flow asynchronously, you can deploy the flow to Argo Workflows (a Kubernetes-native workflow scheduler) with a single command - argo-workflows create.

To get started, take a look at the deployment guide for Kubernetes. Your feedback and feature requests are highly appreciated! - please reach out to us at slack.outerbounds.co

PR #992 addressed issue #50.

Expose tags in current object.

Metaflow tags are now available as part of the current singleton object.

@step
def my_step(self):
    from metaflow import current
    tags = current.tags
    ...

PR #1019 fixed issue #1007.

metaflow - 2.5.4 (Mar 24, 2022)

Published by oavdeev over 2 years ago

Metaflow 2.5.4 Release Notes

The Metaflow 2.5.4 release is a minor release.

Bug Fixes

Full Changelog: https://github.com/Netflix/metaflow/compare/2.5.3...2.5.4

metaflow - 2.5.3 (Mar 7, 2022)

Published by oavdeev over 2 years ago

Metaflow 2.5.3 Release Notes

The Metaflow 2.5.3 release is a minor release.

Fixes

Full Changelog: https://github.com/Netflix/metaflow/compare/2.5.2...2.5.3

metaflow - 2.5.2 (Feb 16, 2022)

Published by oavdeev over 2 years ago

Metaflow 2.5.2 Release Notes

The Metaflow 2.5.2 release is a minor release.

Improvements

Full Changelog: https://github.com/Netflix/metaflow/compare/2.5.1...2.5.2