Allow specifying specific "target" steps in the graph to run in the `Executor` and from the `tango run` command
Ouverte
feature request
- Langage dominant
- Python
- Étoiles
- 572
- Forks
- 55
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
Let's say we have a config like this:
```jsonnet
// 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.
Guide de contribution
Ouvrir le guide de contribution
Évaluation
Cette issue n'a pas encore été évaluée.