🌐
GeeksforGeeks
geeksforgeeks.org › machine learning › getting-started-with-classification
Getting started with Classification - GeeksforGeeks
1 month ago - Predict categories: Determines the class of new data points. Uses labeled data: Trained on datasets where the correct class is known. Common examples: Spam vs non spam emails, diseased vs.
🌐
DataCamp
datacamp.com › blog › classification-machine-learning
Classification in Machine Learning: A Guide for Beginners | DataCamp
August 8, 2024 - Some examples of this kind are: K-Nearest Neighbor. Case-based reasoning. However, some algorithms, such as BallTrees and KDTrees, can be used to improve the prediction latency. There are four main categories of Machine Learning algorithms: supervised, unsupervised, semi-supervised, and ...
Discussions

ElI5: What is machine learning and how does it work?

Machine learning is, in general, a way of pushing a large amount of data into a system and getting out a model that you can then apply to more data.

In structured machine learning, you are trying to get the data to produce a particular type of model. For example, you might want to be able to identify whether a given picture is a picture of a cat. So you get a huge collection of pictures, noting which ones are of cats, and you push those through your system and tweak its model depending on whether it's correctly identifying the pictures or not (so if you give it a picture of a cat and it guesses it is a cat, you try to strengthen the bits of the model that helped it guess right, or if it guesses it isn't a cat, you weaken the bits of the model that made it get it wrong). This is called training the model.

After a while, it should be doing pretty well at correctly identifying the cats in the training pictures, so you then test it on a new set of pictures (where you still know the right answer of whether they're of cats or not), and see how well it does, and if it's still doing a good job then you can finally show it the picture that you don't know anything about, and let the model tell you if it's a cat or not.

In unsupervised learning, you're not looking to model a particular thing, but you are trying to see if there is any structure in the data. For example, you might have data from a service like Netflix on what movies each customer watches. By putting that data through a machine learning system, you might find that there are certain movies that are very likely to be watched by the same people - maybe a lot of people watch Terminator AND Predator AND Rocky AND Rambo - so if someone starts watching some of the movies in that group, you might be able to suggest other movies in that group since there's a good chance they will enjoy those ones too.

More on reddit.com
🌐 r/explainlikeimfive
4
6
April 29, 2015
A List of ML Problems That Build Up In Difficulty And Help Develop Your Skills...
You can sort of do this by iteratively improving on a single dataset. For example, you may develop a classical CV pattern matching method for MNIST and compute its accuracy. Then you can try classical ML methods like decision trees or k means clustering with TSNE. Then you can try CNNs or MLP. Keep track of whatever metrics you’re using for each model, and see how different methods work on the dataset. Given a new task, you can repeat this process by starting from basic models to ones that are closer to state of the art. More on reddit.com
🌐 r/learnmachinelearning
10
149
April 21, 2022
Example of GIS and Machine Learning applications?
I’ve used machine learning for land cover classification. Also used fuzzy logic for site selection. More on reddit.com
🌐 r/gis
54
53
July 22, 2019
What is hard negative mining? And how is it helpful in doing that while training classifiers?

Let's say I give you a bunch of images that contain one or more people, and I give you bounding boxes for each one. Your classifier will need both positive training examples (person) and negative training examples (not person).

For each person, you create a positive training example by looking inside that bounding box. But how do you create useful negative examples?

A good way to start is to generate a bunch of random bounding boxes, and for each that doesn't overlap with any of your positives, keep that new box as a negative.

Ok, so you have positives and negatives, so you train a classifier, and to test it out, you run it on your training images again with a sliding window. But it turns out that your classifier isn't very good, because it throws a bunch of false positives (people detected where there aren't actually people).

A hard negative is when you take that falsely detected patch, and explicitly create a negative example out of that patch, and add that negative to your training set. When you retrain your classifier, it should perform better with this extra knowledge, and not make as many false positives.

More on reddit.com
🌐 r/computervision
3
15
September 15, 2014
🌐
Built In
builtin.com › data-science › supervised-machine-learning-classification
5 Classification Algorithms for Machine Learning | Built In
Classification predicts the category the data belongs to. Some examples of classification include spam detection, churn prediction, sentiment analysis, dog breed detection and so on.
🌐
Google
developers.google.com › machine learning › classification
Classification | Machine Learning | Google for Developers
Calculate and choose appropriate metrics to evaluate a binary classification model. Interpret ROC and AUC. ... In the Logistic regression module, you learned how to use the sigmoid function to convert raw model output to a value between 0 and 1 to make probabilistic predictions—for example, predicting that a given email has a 75% chance of being spam.
🌐
Analytics Vidhya
analyticsvidhya.com › home › classification in machine learning
Classification in Machine Learning
April 7, 2025 - Some examples of such algorithms are Support Vector Machines and Logistic Regression. Now we will create a dataset of our own and use binary classification on it. We will use the make blob() function of the scikit-learn module to generate a ...
🌐
Towards Data Science
towardsdatascience.com › home › latest › top 6 machine learning algorithms for classification
Top 6 Machine Learning Algorithms for Classification | Towards Data Science
January 27, 2025 - In this article, we will discuss top 6 machine learning algorithms for classification problems, including: logistic regression, decision tree, random forest, support vector machine, k nearest neighbour and naive bayes.
🌐
Simplilearn
simplilearn.com › home › resources › ai & machine learning › the ultimate machine learning tutorial › classification in machine learning: what it is and classification models
What is Classification in Machine Learning? | Simplilearn
2 weeks ago - Explore what is classification in Machine Learning. Learn to understand all about supervised learning, what is classification, and classification models. Read on!
Address   5851 Legacy Circle, 6th Floor, Plano, TX 75024 United States
🌐
IBM
ibm.com › think › topics › classification-models
What are classification models? | IBM
November 17, 2025 - For example, a spam filter classifies emails as spam or not spam. Multiclass classification problems classify data among more than two class labels. For instance, an image classifier might classify images of pets by using a myriad of class labels, ...
Find elsewhere
🌐
MathWorks
mathworks.com › campaigns › offers › next › choosing-the-best-machine-learning-classification-model-and-avoiding-overfitting.html
Choosing the Best Machine Learning Classification Model and Avoiding Overfitting - MATLAB & Simulink
You might use a support vector machine (SVM) when your data has exactly two classes. An SVM classifies data by finding the best hyperplane that separates all data points of one class from those of the other class (the best hyperplane for an SVM is the one with the largest margin between the two classes). You can use an SVM with more than two classes, in which case the model will create a set of binary classification subproblems (with one SVM learner for each subproblem).
🌐
Kaggle
kaggle.com › code › faressayah › practical-guide-to-6-classification-algorithms
Practical Guide to 6 Classification Algorithms
Checking your browser before accessing www.kaggle.com · Click here if you are not automatically redirected after 5 seconds
🌐
MachineLearningMastery
machinelearningmastery.com › home › blog › 4 types of classification tasks in machine learning
4 Types of Classification Tasks in Machine Learning - MachineLearningMastery.com
August 19, 2020 - Classification is a task that requires the use of machine learning algorithms that learn how to assign a class label to examples from the problem domain. An easy to understand example is classifying emails as "spam" or "not spam."
🌐
VitalFlux
vitalflux.com › home › data science › classification problems in machine learning: examples
Classification Problems in Machine Learning: Examples
November 28, 2023 - For example, in order to classify images of dogs and cats for use within machine vision systems, machine learning techniques can help automate this process based on pre-classified images of dogs and cats.rent categories.
🌐
IBM
ibm.com › think › topics › classification-machine-learning
What is Classification in Machine Learning? | IBM
November 17, 2025 - Explore supervised learning approaches such as support vector machines and probabilistic classifiers.
🌐
Edureka
edureka.co › blog › classification-in-machine-learning
Classification In Machine Learning | Classification Algorithms | Edureka
June 3, 2024 - In the above example, we were able to make a digit predictor. Since we were predicting if the digit were 2 out of all the entries in the data, we got false in both the classifiers, but the cross-validation shows much better accuracy with the logistic regression classifier instead of the support vector machine classifier. This brings us to the end of this article where we have learned ...
🌐
ProjectPro
projectpro.io › blog › 10 machine learning classification project ideas for beginners
10 Machine Learning Classification Project Ideas for Beginners
October 28, 2024 - The familiar problems of classifying email as spam or not spam, predicting the handwritten character, and so on are all examples of machine learning projects on classification.
🌐
TutorialsPoint
tutorialspoint.com › machine_learning › machine_learning_classification_algorithms.htm
Machine Learning - Classification Algorithms
Mathematically, classification ... along with the input data set. An example of classification problem can be the spam detection in emails....
🌐
Artiba
artiba.org › blog › a-beginners-guide-to-classification-in-machine-learning
A Beginner's Guide to Classification in Machine Learning | Artificial Intelligence
Put simply, classification involves predicting a category or class for a given input. Spam filtering, image recognition, fraud detection, and medical diagnosis are all examples of classification problems.
🌐
Towards Data Science
towardsdatascience.com › home › latest › classification in machine learning: an introduction
Classification in Machine Learning: An Introduction | Towards Data Science
January 26, 2025 - The prediction task is a regression when the target variable is continuous. An example can be the prediction of the salary of a person given their education degree, previous work experience, geographical location, and level of seniority.
🌐
Kaggle
kaggle.com › datasets
Find Open Datasets for AI and Research
Checking your browser before accessing www.kaggle.com · Click here if you are not automatically redirected after 5 seconds
🌐
Readthedocs
engo645-assignments.readthedocs.io › en › latest › tutorials › L4 › classification.html
Classification in Machine Learning: An Introduction
April 2, 2024 - Each instance can belong to only one class, and the classes are mutually exclusive. Examples of multi-class classification tasks include hand-written digit recognition (digits 0-9), sentiment analysis (positive, negative, neutral), and image classification (various object categories).