machine learning

Machine Learning

What is machine learning? Machine learning is a method of data analysis that automates analytical model building. It is a branch of artificial intelligence that uses algorithms to learn from data and make predictions or decisions without being explicitly programmed to do so. There are three main types of machine learning: supervised learning, unsupervised learning, […]

Share

Machine Learning Read More »

Text extracting from an Image (OCR )

Extract text from an image. Extracting text from an image using pytesseract tool and package using Python programming. install tesseract.exe from here. First, here is an image which contains some text as following..[saved as sample.jpg) And here is the full code to extract text from above image. from PIL import Image #Python Imaging Library (abbreviated

Share

Text extracting from an Image (OCR ) Read More »

Face recognition using Python

Face detection In this machine learning example identify face using Python programming. Package  used in this example is opencv [computer vision]. To install this package simply use following syntax: pip install opencv-python import cv2 #pip install opencv-python # Load the cascade face_cascade = cv2.CascadeClassifier(‘face_detector.xml’) # Read the input image img = cv2.imread(‘test2.jpg’) # Detect faces

Share

Face recognition using Python Read More »

Data Science – 4 [extract gold price using web scrap]

Extract live gold price using web scrap – Data Science in the following example we used three packages, they are a) bs4 [Beautiful Soup for web scraping] b) pandas [panel data for data representation ] c) request [to get source / url] #data science with Python – extracting Gold Price import bs4 import pandas as

Share

Data Science – 4 [extract gold price using web scrap] Read More »

Artificial Intelligence

What is Artificial Intelligence (AI)? According to John McCarthy, AI is an ability to interact with the world in the form of speech, vision, motion, manipulation etc. or Ability to model the world and to reason about it. or Ability to learn and to adapt rapidly. Future goals of AI To build systems that exhibit

Share

Artificial Intelligence Read More »

Share
Scroll to Top