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

Allow specifying specific "target" steps in the graph to run in the Executor and from the tango run command #142

Open
epwalsh opened this issue Jan 19, 2022 · 0 comments

Comments

@epwalsh
Copy link
Member

epwalsh commented Jan 19, 2022

Let's say we have a config like this:

// config.jsonnet
{
  steps: {
    dataset: {},
    trained_model: {}, // depends on "dataset"
    eval_results: {},  // depends on "trained_model"
  }
}

But sometimes we only want the trained_model and don't care about eval_results. With this feature, you could do

tango run config.jsonnet --step trained_model

This would result in only running dataset (because it's an input to trained_model) and trained_model, but eval_results is not run.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant