Posts

Showing posts from June, 2020

Integration of Github, Jenkins, and Docker

Image
Integration of Github, Jenkins, and Docker This is the first task i got in MLOps+DevOps training by LinuxWorld, India. Why we need this project ?🤔🤔🤔 Ans: The industry now need automation in every field, here in this task we are doing the same , now Question arise  HOW?🙄😶  for that we have used  Jenkins  , The popular automation tool which is used for various purposes but here we are using Jenkins to automate the process of whenever developer append to the code/program/app/file the jenkins will automatically upadtae the github repository, for this here we used three jobs😮… what actually are those jobs ?😦🙂  this is the right question… Ans: The  first jobs  is, If Developer push to dev branch then Jenkins will fetch from dev and deploy on dev-docker environment. The  Second  One is ,If Developer push to master branch then Jenkins will fetch from master and deploy on master-docke environment. Both dev-docker and master-docker environment ...

The integration of Terraform ,And AWS

Image
The integration of Terraform And AWS Terraform is a tool which gives us a standard platform to manage all the clouds like aws, azure . First thing first , why we need terraform in this time small and big industries , startups need cloud service providers to manage the services for them because they don’t want to involve in managing system architecture. So, they can think about policies and profit. And there are many cloud service providers so different provider has different packages for different services so the problem was , How to learn all the terminology and language of all cloud providers . Here Terraform comes in play . It provides a single language HCL to manage most of the cloud services. And, Now come to our project given as a task by World Record Holder  Vimal Daga  sir  in our Hybrid Multi Cloud Internship and Training. What is to be done in this let’s see — Task : Have to create/launch Application using Terraform 1. Create the key and security group which all...

Transfer Learning Used For Face Recognition

Image
Post management to Transfer Learning Used For Face Recognition image from internet I want to thank #vimaldaga sir because he is only person who taught me to this level to create a project. This Project is to Detect Faces by transfer learning and this can be useful in drones or hospital programs and may be in door lock system many thing you can do from this. This program mails you if mach not found or any other data set enteres . you can use it for sms alert any many platform what you need. Let’s get to the project… The github link of this Project https://github.com/ashu-cybertron/face-recognition-mobilenet-vgg16.git TASK : Using MobileNet we have to to create a project which can regognise who is the person We started with the data set collection because if you don’t have any pre downloaded dataset this will wbe help ful (if you have already then it is very good to start faster ) Add alt text import cv2 import numpy as np face_classifier = cv2.CascadeClassifier('haarcascade_frontalf...