Difference between revisions of "PRIMO.ai"

From
Jump to: navigation, search
(Bag of Tricks)
(Techniques)
Line 156: Line 156:
 
* [[Backpropagation]]
 
* [[Backpropagation]]
 
* [[Gradient Boosting Algorithms]]
 
* [[Gradient Boosting Algorithms]]
 +
* [[Repositories & Other Algorithms]]
 
* [[Dimensional Reduction Algorithms]]
 
* [[Dimensional Reduction Algorithms]]
* [[Repositories & Other Algorithms]]
+
** [[Pooling]]
  
 
==== Bag of Tricks ====
 
==== Bag of Tricks ====
Line 168: Line 169:
 
** [http://www.kdnuggets.com/2018/04/right-metric-evaluating-machine-learning-models-1.html Choosing the Right Metric for Evaluating Machine Learning Models]
 
** [http://www.kdnuggets.com/2018/04/right-metric-evaluating-machine-learning-models-1.html Choosing the Right Metric for Evaluating Machine Learning Models]
 
** [[Approach to Bias and Variances]]
 
** [[Approach to Bias and Variances]]
* [[Pooling]]
 
 
* [[Hyperparameters]]
 
* [[Hyperparameters]]
 
* [[Visualization]]
 
* [[Visualization]]

Revision as of 08:55, 22 June 2018

If you get a 503 error please try the webpage again, thank you.

Overview

Background

AI Breakthroughs

AI Fun

How to...

Forward Thinking

Algorithms

Supervised

Labeled (desired solution) data is fed into the algorithm. The training data set has inputs as well as the desired output. During the training session, the model will adjust its variables to map inputs to the corresponding output.

Convolutional

Deonvolutional

Sequence

Unsupervised

There is not a target outcome. The algorithms will cluster the data set for different groups. Some uses of Unsupervised Learning are (1) data compression, (2) classification, (3) clustering, and (4) outlier detection

Unsupervised: Probabilistic/Generative

A probability distribution over a set of classes for each input sample. Unlabeled data is classified as (1) conditional probability of the target Y, or (2) conditional probability of the observable X given a target Y

Competitive

Unsupervised: Non-Probabilistic

Unlabeled data is fed into the algorithm with the algorithm seperating the feature space and return the class associated with the space where a sample originates from.

Semi-Supervised

Reinforcement (RL)

An 'agent' algorithm receives a delayed reward in the next time step to evaluate its previous action. Therefore based on those decisions, the algorithm will train itself based on the success/error of output. In combination with Neural Networks it is capable of solving more complex tasks.

Frameworks

TensorFlow

Techniques

Mathematical Background

Datasets & Information Analysis

Algorithms

Bag of Tricks

Coding

Platforms: Machine Learning as a Service (MLaaS)

Amazon AWS

Google Cloud AI

Kaggle

Microsoft Azure

Intel

Research & Development

Other