metaflow
metaflow copied to clipboard
:rocket: Build and manage real-life ML, AI, and data science projects with ease!
- add command for listing runs (and filtering by status) for argo-workflows addresses part of #1387 Note: due to API limitations, this feature required adding a custom label to workflows...
The current Metaflow client truncates flow names to the maximum length of 253 characters for `metadata.name` for Kubernetes objects. This leads to an issue when deploying on Argo Workflows, where...
- use block styles for slack messages - add argo UI url and metaflow UI url's to the message if environment variable is configured Use https://app.slack.com/block-kit-builder for the message layout
metaflow.s3.get_many (and the other get* methods) will download the files to a local cache dir, but don't maintain the original directory structure. This is fine when the task needs access...
This PR makes the setting for the lifetime of Kubernetes jobs after they have completed configurable. # Testing Done ## script without kubernetes decorator: ``` from metaflow import FlowSpec, step,...
Class attributes override artifacts, which can be confusing. In this example, the value of `myval` is 1, not 5, in steps after `start`. We should show a warning or handle...
tracking integration work with kueue/volcano/yunicorn cc @rparundekar
- adding a security policy to detail how to safely disclose vulnerabilities. Discussion: - Supported versions, are all reports of interest, or should we already have a cut off at...
Most data scientist do their development in Jupyter Notebooks. Recommendation would be to use something like [Kale](https://github.com/kubeflow-kale/kale) to be able to tag cells in Jupyter Notebook and for them to...
Hi, calling `pylint` on a file with the statement `from metaflow import card` leads to a `no-name-in-module` error. If one then wants to use `current.card` pylint reports the `no-member` error....