Log Files
Understanding AzureML log files
name | description |
---|---|
70_driver_log.txt | Standard out. If you print('hello') in your script, this is where it will appear. |
60_control_log.txt | ?? |
20_image_build.txt | This log will only appear if you are building a new image. e.g. if you add a dependency to your environment a new image will be built (the first time you use it) rc = RunConfiguration() rc.environment.python.conda_dependencies.add_conda_package("scikit-learn") |