dkmiller / tidbits

Short notes on stuff I have recently discovered / understood
1 stars 0 forks source link

Train a model to classify Azure ML "log lines" as failure vs. non-failure #90

Open dkmiller opened 2 years ago

dkmiller commented 2 years ago

Log files are in the workspaceblobstore, container azureml, path ExperimentRun/dcid.{run_id}/.

Scrape the run history APIs to get a list of:

join that with log files to get a dataset containing

Then create a model to predict end state from that data.

Possible workspaces

dkmiller commented 2 years ago

May need credential passthrough (OBO), since the container azureml doesn't show up as a datastore, even though users' identity has direct access.