Review the sample app
The sample app has three parts:
Worker, the Python script which will be executed in Azure Batch, this is the actual work we want to execute, normally contains the business logic. This sample app use the Boston House Price as the example problem to solve.
Worker input, the configuration (and/or data) for the worker script, which will tell the worker script what it needs to do. In this small sample app, it only contains configuration, no data.
Controler, which will upload config and worker source code to Azure Storage, create worker job and tasks on Azure Batch, wait for it completed, and download the output.

Last updated
Was this helpful?