[Question] How do I retrieve the outputs of each trials of a sweep job?
See original GitHub issue- Package Name: azure.ai.ml.sweep
- Package Version: 1.0.0
- Operating System: Ubuntu
- Python Version: py38
I am running a Sweep job successfully on AzML and now I want to retrieve the outputs of each
trials for further exploration.
Thing is reading the both the doc and the code I can’t see how I am supposed to retrieve them. The SweepJob
class does not seem to expose the run like hyperdrive used to.
I would love if any one could give me directions ❤️
Issue Analytics
- State:
- Created a year ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
CLI (v2) sweep job YAML schema - Azure Machine Learning
Experiment name to organize the job under. Each job's run record will be organized under the corresponding experiment in the studio's " ...
Read more >Chapter 7 Performing Transient Analysis - Class Home Pages
Transient sweep specifications can include the following keywords and parameters: ... Star-Hspice outputs all convergent iterations. INTERP.
Read more >Sine Sweep Testing - enDAQ
Sine Sweep Time Domain Equations ... The test duration is T. The starting and ending frequencies are and , respectively. ... The sweep...
Read more >Optuna Guide: How to Monitor Hyper-Parameter Optimization ...
This trial object is used to construct a model inside the objective function. In this case, we choose the number of layers and...
Read more >Inventor - To Create Sweeps - Autodesk Knowledge Network
Sweep a Profile Along a Path · Path. Holds the swept profile constant to the sweep path. All sweep sections maintain the original...
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
Ok I guess I won’t be able to have the same behavior as the sdk v1. Here is the closest thing I have for retrieving the ouput of a single trial of a sweep job.
This should output:
Now you can download the output directory.
I am not sure if the mlflow API enable file renaming.
Hope this help someone in the future
@pievalentin thx for sharing your solution. Another thing you can try is
ml_client.jobs.download(name=trial.name)