Artificial Intelligence

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