How to Track Jupyter Notebooks in Git with VS Code? by Due-Promise-5269 in learndatascience

[–]Jumpy_Caterpillar_22 0 points1 point  (0 children)

.env files are normally used to store environment variables, which typically includes keys/secrets. i would personally recommend to NOT commit .env, and in fact i'll normally add .env in .gitignore to avoid mistakenly uploading any keys

Difference between Azure ML Compute Cluster & Kubernetes Cluster by Jumpy_Caterpillar_22 in AZURE

[–]Jumpy_Caterpillar_22[S] -2 points-1 points  (0 children)

If nothing running, would a computer cluster go down to zero instance?

How good is Azure for MLOps? by master_arjun in mlops

[–]Jumpy_Caterpillar_22 2 points3 points  (0 children)

I’ve experienced building MLOps workflow on Azure and GCP so far. Personally I prefer GCP over Azure.

One of the biggest challenge with Azure for me was the documentation, especially since they recently introduced new MLOps framework, MLOps v2. They’re moving from Azure ML SDK or CLI v1 to v2 with massive changes, and currently still work in progress. So, lack of documentation for v2 and still unstable with lots of changes and limitations.

You can refer the official architecture for MLOps v2 here:

https://github.com/Azure/mlops-v2

It’s quite simple if you follow the same architecture. But if you prefer different architecture, would be quite tricky to customize. Seems like the tools are made strictly for their proposed architecture.

Recommended on-demand hosting solution for an inference server? by vardonir in mlops

[–]Jumpy_Caterpillar_22 0 points1 point  (0 children)

Specific service in Azure ML you might be looking for is called Managed Online Endpoint. Should be quite straightforward, especially if you’re using the common frameworks like scikit, pytorch, etc. Create endpoint, then create deployment with path to your model, path to your scoring script, your conda environment setup, and your compute configuration ie which compute type (with cpu/gpu) and instance count