Skip to content
Ben Alex Keen
  • Home
  • About
  • Blog
Menu Close
  • Home
  • About
  • Blog

Python

  1. Home>
  2. Python>
  3. Page 4

Support Vector Classifiers in python using scikit-learn

  • Post author:Ben Keen
  • Post published:31st May 2017
  • Post category:Python

Support Vector Classifiers in python using scikit-learnIn this post we will be using a Support Vector Classifier (SVC) to classify handwritten digits. This dataset can be found here. Support Vector…

Continue ReadingSupport Vector Classifiers in python using scikit-learn

Decision Tree Classifier in Python using Scikit-learn

  • Post author:Ben Keen
  • Post published:31st May 2017
  • Post category:Python

Decision Tree Classifier in Python using Scikit-learnDecision Trees can be used as classifier or regression models. A tree structure is constructed that breaks the dataset down into smaller subsets eventually…

Continue ReadingDecision Tree Classifier in Python using Scikit-learn

Linear Regression in Python using scikit-learn

  • Post author:Ben Keen
  • Post published:23rd May 2017
  • Post category:Python

Linear Regression in Python using scikit-learnIn this post, we'll be exploring Linear Regression using scikit-learn in python. We will use the physical attributes of a car to predict its miles…

Continue ReadingLinear Regression in Python using scikit-learn

Feature Scaling with scikit-learn

  • Post author:Ben Keen
  • Post published:10th May 2017
  • Post category:Python

Feature Scaling with scikit-learn In this post we explore 3 methods of feature scaling that are implemented in scikit-learn: StandardScaler MinMaxScaler RobustScaler Normalizer Standard Scaler The StandardScaler assumes your data…

Continue ReadingFeature Scaling with scikit-learn

K-nearest Neighbours Classification in python

  • Post author:Ben Keen
  • Post published:10th May 2017
  • Post category:Python

K-nearest Neighbours Classification in pythonK-nearest Neighbours is a classification algorithm. Just like K-means, it uses Euclidean distance to assign samples, but K-nearest neighbours is a supervised algorithm and requires training…

Continue ReadingK-nearest Neighbours Classification in python

Scoring Classifier Models using scikit-learn

  • Post author:Ben Keen
  • Post published:10th May 2017
  • Post category:Python

Scoring Classifier Models using scikit-learn scikit-learn comes with a few methods to help us score our categorical models. The first is accuracy_score, which provides a simple accuracy score of our…

Continue ReadingScoring Classifier Models using scikit-learn

Splitting Data for Machine Learning with scikit-learn

  • Post author:Ben Keen
  • Post published:10th May 2017
  • Post category:Python

Splitting Data for Machine Learning with scikit-learn scikit-learn provides a helpful function for partitioning data, train_test_split, which splits out your data into a training set and a test set. In…

Continue ReadingSplitting Data for Machine Learning with scikit-learn

Isomap for Dimensionality Reduction in Python

  • Post author:Ben Keen
  • Post published:9th May 2017
  • Post category:Python

Isomap for Dimensionality Reduction in PythonIsomap (Isometric Feature Mapping), unlike Principle Component Analysis, is a non-linear feature reduction method. We will explore the data set used by the original authors…

Continue ReadingIsomap for Dimensionality Reduction in Python

Principle Component Analysis in Python

  • Post author:Ben Keen
  • Post published:8th May 2017
  • Post category:Python

Principle Component Analysis in PythonPrinciple component analysis (PCA) is an unsupervised statistical technique that is used for dimensionality reduction. It turns possible correlated features into a set of linearly uncorrelated…

Continue ReadingPrinciple Component Analysis in Python

Fibonacci Implementation in python

  • Post author:Ben Keen
  • Post published:7th May 2017
  • Post category:Python

Fibonacci Implementation in pythonIn this post, we're going to take a look at how to implement the fibonacci sequence in python. The fibonacci sequence is the series of numbers you…

Continue ReadingFibonacci Implementation in python
  • Go to the previous page
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • Go to the next page
© Ben Alex Keen