Microsoft Azure Developer Training at IBM Philippines


unnamed

Recently I did Microsoft Azure developer training for IBM Philippines staff . I covered following topics during the training.

http://www.bluechiptraining.biz/developing-solutions-for-microsoft-azure-training/

2sc1

For Training Requirement Contact-

udithait@gmail.com

training@bluechiptraining.biz

Sri Lanka

+94 0716092918

Singapore-
+65 86738158

Online Healthcare Machine Learning workshop at Melbourne.


Online Healthcare Machine Learning workshop at Melbourne.

Recently I had conducted online Machine Learning workshop for St John of God Health Care Doctors at Melbourne. Following topics covered at the training.

Introduction to Data Science

Introduction to Machine Learning

Machine Learning in Healthcare

Healthcare research in Machine Learning.

Online Healthcare Machine Learning workshop at Melbourne.

Online Healthcare Machine Learning workshop at Melbourne.

For Training Requirement Contact-

udithait@gmail.com

training@bluechiptraining.biz

Sri Lanka

+94 0716092918

Singapore-
+65 86738158

Online IT Academy.


logo

New way of learning for IT.

#AI #Mobile #Blockchain #Cloud #DevOps #BI #ICT #Games
#Office #Networking #Linux #Web #Infrastructure #Programming
#CyberSecurity #UX #VR

http://www.itacademy.biz/

Sri Lanka DevOps Community Online Meetup.


Sri Lanka DevOps Community Online Meetup

Machine Learning Operations (MLOps) is based on DevOps principles and practices that increase the efficiency of workflows. For example, continuous integration, delivery, and deployment. MLOps applies these principles to the machine learning process, with the goal of:

• Faster experimentation and development of models
• Faster deployment of models into production
• Quality assurance

Agenda –
• Azure Machine Learning
• ML Pipeline
• Azure DevOps Integration

Azure Architect Technologies (AZ-300) Online Singapore Training.


Azure Architect Technologies (AZ-300) Online Singapore Training.

Recently I had conducted Azure Architect Technologies (AZ-300) online training. Following topics covered at the training.

Deploying and Configuring Infrastructure
Implementing Workloads and Security
Understanding Cloud Architect Technology Solutions
Creating and Deploying Apps
Developing for the Cloud

http://www.bluechiptraining.biz/azure-architect-technologies-az-300-training-sri-lanka/

Azure Architect Technologies (AZ-300) Online Singapore Training.

Azure Architect Technologies (AZ-300) Online Singapore Training.

Around 20 participants attended the training.

For Training Requirement Contact-

udithait@gmail.com

training@bluechiptraining.biz

Sri Lanka

+94 0716092918

Singapore-
+65 86738158

Introduction to Machine Learning Workshop .


cloud-machine-learning-workshop-sri-lanka_thumb

https://www.meetup.com/Colombo-AI-Technology-Meetup/events/271734830/

Register URL – https://bit.ly/3fdAK56

Contact us at +94 (071) 6092918

udithait@gmail.com
training@bluechiptraining.biz

Conducted By-

Uditha Bandara (MVP) is specializes in Data Science, Mobile App and Blockchain technologies. He is the South East Asia`s First XNA/DirectX MVP (Most Valuable Professional). He had delivered sessions at various events and conferences in Hong Kong, Malaysia, Singapore, Indonesia, Sri Lanka and India. He has published several books,articles, tutorials, and demos on his Blog – https://uditha.wordpress.com

http://datasciencesrilanka.education

Data Science Solution on Azure Online Singapore Training.


11111

Recently I had conducted Azure Data Science solution online training. Following topics covered at the training.

Module 1: Introduction to Azure Machine Learning
Module 2: No-Code Machine Learning with Designer
Module 3: Running Experiments and Training Models
Module 4: Working with Data
Module 5: Compute Contexts
Module 6: Orchestrating Operations with Pipelines
Module 7: Deploying and Consuming Models
Module 8: Training Optimal Models
Module 9: Interpreting Models
Module 10: Monitoring Models

qqqqq

2222

Around 20 participants attended the training.

Cloud Machine Learning Workshop Sri Lanka.


Cloud Machine Learning Workshop sri lanka2

Cloud Machine Learning Workshop sri lanka

https://www.meetup.com/Colombo-AI-Technology-Meetup/events/270402228/

Register URL – https://bit.ly/3fdAK56

Contact us at +94 (071) 6092918

Feel free to contact us for any inquiries

Uditha Bandara (MVP) is specializes in Data Science, Mobile App and Blockchain technologies. He is the South East Asia`s First XNA/DirectX MVP (Most Valuable Professional). He had delivered sessions at various events and conferences in Hong Kong, Malaysia, Singapore, Indonesia, Sri Lanka and India. He has published several books,articles, tutorials, and demos on his Blog – https://uditha.wordpress.com

http://datasciencesrilanka.education

Machine learning and AI Bootcamp training at Ceylinco Insurance .


Machine learning and AI Bootcamp training sri lanka

Recently I did Data Science and Machine learning Bootcamp training at Sri Lanka.

This 2 days training was focus on getting started with Data Science technologies. Azure machine learning studio, R studio, Jupyter Notebook , Spyder with Python for data science. It also includes real world usage of machine learning for regression, classification and product recommendations.

Machine learning and AI Bootcamp training sri lanka

Course Outline –

https://uditha.wordpress.com/2018/04/25/data-science-bootcamp-training-sri-lanka-singapore/

10  developers from Ceylinco Insurance attended 2 Days of training.

Machine learning and AI Bootcamp training sri lanka

Machine learning and AI Bootcamp training sri lanka

For Training Requirement Contact-

udithamail@yahoo.com

udithait@gmail.com

training@bluechiptraining.biz

Getting started with Azure Kubernetes Service (AKS).


Azure Kubernetes Service

Kubernetes allows you to build your applications with your preferred programming language, OS, libraries, or messaging bus. Existing continuous integration and continuous delivery (CI/CD) tools can integrate with Kubernetes to schedule and deploy releases.

Azure Kubernetes Service (AKS) provides a managed Kubernetes service that reduces the complexity for deployment and core management tasks, including coordinating upgrades. The AKS control plane is managed by the Azure platform, and you only pay for the AKS nodes that run your applications

Kubernetes cluster architecture

A Kubernetes cluster is divided into two components:

· Control plane nodes provide the core Kubernetes services and orchestration of application workloads.

· Nodes run your application workloads.

Azure Kubernetes Service

You can create AKS using Azure portal or CLI tools. Azure portal option is beginner friendly. First you can go into azure portal and select containers. Then select Kubernetes Service.

Azure Kubernetes Service

Then it will direct into Create Kubernetes Cluster window. In that you can select new resource group and give cluster name. Also you can select preferred Kubernetes version. Afterward you can select Review+ create to build AKS.

Azure Kubernetes Service

Azure also supports creating AKS using CLI. For that you can use following commands.

az group create –name myResourceGroup –location eastus

az aks create --resource-group myResourceGroup --name myAKSCluster

 --node-count 1 --enable-addons monitoring --generate-ssh-keys

Once AKS created you can view using portal or commands line.

Azure Kubernetes Service

Since Azure manage things like networking, scaling, monitoring we can only focus on deploying applications.

Azure Kubernetes Service

Auto Scaling

Azure Kubernetes Service

Monitoring

Once application deployed it can be viewed using command line or dashboard. Next tutorial we will discuss deploying application to Kubernetes cluster. You can launch AKS dashboard using following command.

az aks browse –resource-group myResourceGroup –name myAKSCluster

Azure Kubernetes Service

Azure Kubernetes Service

After application deployment you can go to services in look for public IP address to launch web site.

Azure Kubernetes Service