Git Product home page Git Product logo

isro-project's Introduction

ISRO-project

I'm working on garbage volume estimation using multi view images project under ISRO. I am exploring various algorithms for image classification.

k-NN Algorithm

I have currently tried out k-NN algorithm on MNIST data set using scikit-learn. K-NN algorithm is a supervised machine learning algorithm. This means the model requires no training, and can get right to classifying data. To classify some given data point, p, a K-NN model will first compare p to every other point it has available in its data base using some distance metric. Two points with smaller distance between them are more similar than two points with a larger distance between them. This is the central idea behind K-NN. This process will return an unordered array, where each entry in the array holds the distance between p and one of the n data points in the models data base. k is some arbitrary value selected (usually between 3–11) that tells the model how many most similar points to p it should consider when classifying p. The model will then take those k most similar values, and use a voting technique to decide how to classify p, as exemplified by the image below.

about scikit-learn

Scikit-learn (formerly scikits.learn) is a free software machine learning library for the Python programming language.It features various classification, regression and clustering algorithms including support vector machines, random forests, gradient boosting, k-means and DBSCAN, and is designed to interoperate with the Python numerical and scientific libraries NumPy and SciPy. The sklearn.datasets package embeds some small toy datasets as introduced in the Getting Started section. sklearn.neighbors provides functionality for unsupervised and supervised neighbors-based learning methods.  The sklearn.metrics module includes score functions, performance metrics and pairwise metrics and distance computations.

isro-project's People

Contributors

yashaswinipj avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.