How to time tigger a python script in the Azure ML notebooks

376 Views Asked by At

Hi I am currently working on a small image classification project where the model classifies whether the image contains potholes or not. For this section i have wrote the python script, and this script needs to be triggered at scheduled time. I created a scheduled compute instance but the script doesn't get implemented when the compute instance is running. So i want to know what method should i use to get this sorted.

2

There are 2 best solutions below

0
On
0
On

You shouldn't use compute instances for that - you should package your python code in a pipeline, make sure it is registered in the workspace, and then use the schedule class on that pipeline.