Reinforcement Learning session at Smart Data Forum


Reinforcement Learning is transforming industries and reshaping how machines learn from their environment. Join me as we delve into key concepts, real-world applications, and the future of this cutting-edge technology.

401570411_10161595158946842_6393573803790073674_n

DSC_4576

DSC_4661

Bluechip technologies Asia Annual Tech 101 Summit


CY8A0210

CY8A0192

CY8A0214

CY8A0145 (2)

CY8A0141

CY8A0111 (1)

CY8A0080

CY8A0072

CY8A0061

CY8A0051

CY8A0029 (1)

CY8A0003

CY8A0001

Tech 101 at Bluechip Technologies Asia


tech101

2022 Event

Microsoft Highway to a 100 Unicorns Program.


We are happy to be selected for Microsoft Highway to a 100 Unicorns Program.

MS

https://news.microsoft.com/apac/2020/10/12/microsoft-expands-highway-to-a-100-unicorns-initiative-to-support-startups-in-asia-pacific/

Bluechip Technologies Asia @ ICT SPRING EUROPE 2021


Bluechip Technologies Asia take part in Luxembourg ICT SPRING EUROPE 2021

As an influential voice in the worldwide Tech community,  the aim of ICT Spring is to encourage emulation and networking between business decisions makers, innovation managers, startups,  researchers and venture capitalists on a European scale. It is a yearly event held in Luxembourg City which is dedicated to exhibiting and demonstrating the latest relevant trends and innovations and discuss their impact on society and the working world.

ICT Spring

ICT

Docker for Azure & DevOps Online Meetup.


docker training sri lanka

With Docker has gained immense popularity in the IT industry because of the extent of application and usage flexibility it can offer. Let’s learn..

· Introduction to Docker
· Creating Images
· Azure Container Registry
· ACR with DevOps

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

Microsoft Azure DevOps Training at Yangon , Myanmar .


azure-devops-training_thumb

Microsoft Azure DevOps Training at YangonMicrosoft Azure DevOps Training at Yangon

Recently I did Microsoft Azure DevOps Training at  Yangon , Myanmar .

I covered following topics at the training.

Introduce Azure DevOps with key features.

Agile and azure boards  with hands on labs.

Git with azure repos using both Visual studio and VS code.

Azure artefact with building and deploying class library.

Introduce Azure test plans to build test cases

Setup build pipeline using asp.net project and deploy to azure container service.

Setup azure pipeline using app service to push azure container repository.

Setup Azure Kubernetes Service using Azure DevOps.

Microsoft Azure DevOps Training at Yangon

Microsoft Azure DevOps Training at Yangon

Microsoft Azure DevOps Training at Yangon

20 IT Staff members attended 2 Days of Devops with Micro services training.

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