All Projects → MorvanZhou → train-classifier-from-scratch

MorvanZhou / train-classifier-from-scratch

Licence: other
Machine Learning: Collect data online and train a classifier from scratch

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to train-classifier-from-scratch

Emlearn
Machine Learning inference engine for Microcontrollers and Embedded devices
Stars: ✭ 154 (+161.02%)
Mutual labels:  classifier
Dfl Cnn
This is a pytorch re-implementation of Learning a Discriminative Filter Bank Within a CNN for Fine-Grained Recognition
Stars: ✭ 245 (+315.25%)
Mutual labels:  classifier
website-fingerprinting
Deanonymizing Tor or VPN users with website fingerprinting and machine learning.
Stars: ✭ 59 (+0%)
Mutual labels:  classifier
Naive Bayes Classifier
yet another general purpose naive bayesian classifier.
Stars: ✭ 162 (+174.58%)
Mutual labels:  classifier
Errant
ERRor ANnotation Toolkit: Automatically extract and classify grammatical errors in parallel original and corrected sentences.
Stars: ✭ 208 (+252.54%)
Mutual labels:  classifier
polyssifier
run a multitude of classifiers on you data and get an AUC report
Stars: ✭ 64 (+8.47%)
Mutual labels:  classifier
Awesome Decision Tree Papers
A collection of research papers on decision, classification and regression trees with implementations.
Stars: ✭ 1,908 (+3133.9%)
Mutual labels:  classifier
Face-Recognition-FaceNet
A python script label faces in group photos using Facenet. 🎉
Stars: ✭ 21 (-64.41%)
Mutual labels:  classifier
Pytorch Multi Label Classifier
A pytorch implemented classifier for Multiple-Label classification
Stars: ✭ 232 (+293.22%)
Mutual labels:  classifier
lapis-bayes
Naive Bayes classifier for use in Lua
Stars: ✭ 26 (-55.93%)
Mutual labels:  classifier
Programming Language Classifier
An example of how to use CreateML in Xcode 10 to create a Core ML model for classifying text
Stars: ✭ 172 (+191.53%)
Mutual labels:  classifier
Licenseclassifier
A License Classifier
Stars: ✭ 180 (+205.08%)
Mutual labels:  classifier
createml-playgrounds
Create ML playgrounds for building machine learning models. For developers and data scientists.
Stars: ✭ 82 (+38.98%)
Mutual labels:  classifier
Speech signal processing and classification
Front-end speech processing aims at extracting proper features from short- term segments of a speech utterance, known as frames. It is a pre-requisite step toward any pattern recognition problem employing speech or audio (e.g., music). Here, we are interesting in voice disorder classification. That is, to develop two-class classifiers, which can discriminate between utterances of a subject suffering from say vocal fold paralysis and utterances of a healthy subject.The mathematical modeling of the speech production system in humans suggests that an all-pole system function is justified [1-3]. As a consequence, linear prediction coefficients (LPCs) constitute a first choice for modeling the magnitute of the short-term spectrum of speech. LPC-derived cepstral coefficients are guaranteed to discriminate between the system (e.g., vocal tract) contribution and that of the excitation. Taking into account the characteristics of the human ear, the mel-frequency cepstral coefficients (MFCCs) emerged as descriptive features of the speech spectral envelope. Similarly to MFCCs, the perceptual linear prediction coefficients (PLPs) could also be derived. The aforementioned sort of speaking tradi- tional features will be tested against agnostic-features extracted by convolu- tive neural networks (CNNs) (e.g., auto-encoders) [4]. The pattern recognition step will be based on Gaussian Mixture Model based classifiers,K-nearest neighbor classifiers, Bayes classifiers, as well as Deep Neural Networks. The Massachussets Eye and Ear Infirmary Dataset (MEEI-Dataset) [5] will be exploited. At the application level, a library for feature extraction and classification in Python will be developed. Credible publicly available resources will be 1used toward achieving our goal, such as KALDI. Comparisons will be made against [6-8].
Stars: ✭ 155 (+162.71%)
Mutual labels:  classifier
ocr-machine-learning
OCR Machine Learning in python
Stars: ✭ 42 (-28.81%)
Mutual labels:  classifier
Scene Text Recognition
Scene text detection and recognition based on Extremal Region(ER)
Stars: ✭ 146 (+147.46%)
Mutual labels:  classifier
bayes
naive bayes in php
Stars: ✭ 61 (+3.39%)
Mutual labels:  classifier
Nepali-News-Classifier
Text Classification of Nepali Language Document. This Mini Project was done for the partial fulfillment of NLP Course : COMP 473.
Stars: ✭ 13 (-77.97%)
Mutual labels:  classifier
pyAudioProcessing
Audio feature extraction and classification
Stars: ✭ 165 (+179.66%)
Mutual labels:  classifier
golinear
liblinear bindings for Go
Stars: ✭ 45 (-23.73%)
Mutual labels:  classifier

Train a car condition classifier from scratch

This is a step by step tutorial of training a neural network classifier. The dataset I'm using is from UCI. I've also wrote a detailed tutorial in Chinese in 莫烦Python.

Data description

4 Classes about car's condition:

  • unacc: unaccepted condition
  • acc: accepted condition
  • good: good condition
  • vgood: very good condition

Features:

  • buying: vhigh, high, med, low.
  • maint: vhigh, high, med, low.
  • doors: 2, 3, 4, 5more.
  • persons: 2, 4, more.
  • lug_boot: small, med, big.
  • safety: low, med, high.

Training

Files:

Training result

Dependencies

  • Python
  • tensorflow
  • pandas
  • numpy
  • matplotlib

You can view more tutorials on this page or know more about me on here.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].