This message was deleted.
# ask-anything
s
This message was deleted.
j
Also it's unclear to me how do I get parameters for a given task - this does not show when running
ploomber status
Anyway, the grid example on using MLFlow was great, I came looking for running param grids but the tutorial matched what I needed better than I expected!
🙌 1
👍 1
e
currently, there's no way to change the default name "task_name_{i}" but we have an open issue about it. what you can do; however, is to customize the output using
[[param_name]]
, see the example here: https://docs.ploomber.io/en/latest/api/spec.html#id7
🙏 1
regarding the status, you can run `ploomber interact`; then do
dag[task_name]
params and that will return the parameters for that task
j
is there a different way to parametrize products in tasks with grids?
I have a function that makes a plot, and if it doesn't see .png extension it adds one, so ploomber fails because he doesnt see 'plot_product-0' ('plot_product-0.png') was generated
e
what happens if you put
product: plot_product.png
? in such case, ploomber will generate
plot_product-{number}.png
. would that still break the plotting function?