Simplify execution of various runs with different params
See original GitHub issueAs an alternative to repeated (manual) executions of:
dvc exp run -S a=1
dvc exp run -S a=2
it might be usefull (and clean, I think) to allow some way to “pass several param files” (from a folder maybe), and this would “auto-queue” runs automatically accordingly.
Issue Analytics
- State:
- Created a year ago
- Reactions:2
- Comments:15 (6 by maintainers)
Top Results From Across the Web
Maven: Possibility to execute same execution with different ...
I am working on a multi module maven project, in which I need to run the same execution multiple times with only 1...
Read more >Query Optimization Techniques in SQL Server: Parameter ...
A query is executed infrequently OR parameter values are not very diverse. Different parameter values result in wildly different execution plans ...
Read more >Simple Parameterization and Trivial Plans — Part 6
Shell plans optimize for very frequent execution of simple statements, bypassing the parsing, parameter replacement, normalization, and decoding ...
Read more >What is Parameter Sniffing in SQL Server?
When different parameters for the same stored procedure (or a string) cause different execution plans, you're a victim of parameter sniffing.
Read more >Run notebook executions with parameters - Vertex AI
This page describes how to set up your notebook file to use parameters, and how to run executions that specify different values for...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is what Facebook’s Hydra does, and it really is intuitive and clean.
My main usecase for the feature request would be to auto-generate such parameter files. #8187 does not allow this. The parameters are interwoven with the rest of the
exp run
command.This would allow to use any algorithm for calculating the concrete parameters, without the need to include all such algorithms in dvc itself.