-
Overview This post is about identifying raccoon in an input image. We will collect raccoon images and find the cordinates in the images where our image object can be identified. This techinique is termed ad Image Annotation. For sake of simplicity we will follow bounding box annotation. Here we will have location of …
Read More -
Ensemble Techniques
Dec 5, 2019 · 18 min read · aiml ensemble-technique jupyter-notebook pandas DecisionTreeClassifier RandomForestClassifier AdaBoostClassifier BaggingClassifier GradientBoostingClassifier ·Overview Help the marketing team identify potential customers who are relatively more likely to subscribe term deposit and thus increase their hit ratio Problem Statement Using the collected from existing customers, build a model that will help the marketing team identify potential customers who are relatively more …
Read More -
Overview The data contains features extracted from the silhouette of vehicles in different angles. The purpose is to classify a given silhouette as one of three types of vehicle, using a set of features extracted from the silhouette. The vehicle may be viewed from one of many different angles. Solution Importing …
Read More -
Overview The data contains features extracted from the silhouette of vehicles in different angles. The purpose is to classify a given silhouette as one of three types of vehicle, using a set of features extracted from the silhouette. The vehicle may be viewed from one of many different angles. Solution Import Necessary …
Read More -
Supervised Learning Thera Bank case study
Overview The classification goal is to predict the likelihood of a liability customer buying personal loans. Solution 1#Import Necessary Libraries 2 3# NumPy: For mathematical funcations, array, matrices operations 4import numpy as np 5 6# Graph: Plotting graphs and other visula tools 7import pandas as pd 8import …
Read More