# Machine Learning

Discover the specifics of each method associated with building powerful machine learning models from scratch, making predictions and solving problems easily

## Simple Linear Regression

This function models the relationship between two continuous variables. The objective is to predict the value of an output variable based on the value of an input variable.

{% content-ref url="machine-learning/simple-linear-regression-ml\_r\_1" %}
[simple-linear-regression-ml\_r\_1](https://docs.autogon.ai/autogon-engine-studio/machine-learning/simple-linear-regression-ml_r_1)
{% endcontent-ref %}

## Multiple Linear Regression

This function models the relationship between more independent variables. The objective is to predict the value of an output variable based on the value of input variables.

{% content-ref url="machine-learning/multiple-linear-regression-ml\_r\_2" %}
[multiple-linear-regression-ml\_r\_2](https://docs.autogon.ai/autogon-engine-studio/machine-learning/multiple-linear-regression-ml_r_2)
{% endcontent-ref %}

## Polynomial Linear Regression

This function uses the relationship between variables to find the best non-linear fit through the data points.

{% content-ref url="machine-learning/polynomial-linear-regression-ml\_r\_3" %}
[polynomial-linear-regression-ml\_r\_3](https://docs.autogon.ai/autogon-engine-studio/machine-learning/polynomial-linear-regression-ml_r_3)
{% endcontent-ref %}

## Support Vector Regression

This function can be used for solving both linear and non-linear problems.

{% content-ref url="machine-learning/support-vector-regression-ml\_r\_4" %}
[support-vector-regression-ml\_r\_4](https://docs.autogon.ai/autogon-engine-studio/machine-learning/support-vector-regression-ml_r_4)
{% endcontent-ref %}

## Decision Tree Regression

This function splits the data into smaller subsets while at the same time an associated decision rule is used to predict the target variable, built in the form of a tree structure.

{% content-ref url="machine-learning/decision-tree-regression-ml\_r\_5" %}
[decision-tree-regression-ml\_r\_5](https://docs.autogon.ai/autogon-engine-studio/machine-learning/decision-tree-regression-ml_r_5)
{% endcontent-ref %}

## Random Forest Regression

This function builds multiple decision trees and combines their outputs to make a final prediction.

{% content-ref url="machine-learning/random-forest-regression-ml\_r\_6" %}
[random-forest-regression-ml\_r\_6](https://docs.autogon.ai/autogon-engine-studio/machine-learning/random-forest-regression-ml_r_6)
{% endcontent-ref %}

## Logistic Regression

This function performs analysis on a dataset and returns the predicted binary outcome based on the input independent variables.

{% content-ref url="machine-learning/logistic-regression-ml\_cn\_1" %}
[logistic-regression-ml\_cn\_1](https://docs.autogon.ai/autogon-engine-studio/machine-learning/logistic-regression-ml_cn_1)
{% endcontent-ref %}

## K-Nearest Neighbours

This function finds the K number of training examples closest (nearest neighbors) to the input data and then classifying the input data based on the majority class of its nearest neighbors.

{% content-ref url="machine-learning/k-nearest-neighbors-knn-ml\_cn\_2" %}
[k-nearest-neighbors-knn-ml\_cn\_2](https://docs.autogon.ai/autogon-engine-studio/machine-learning/k-nearest-neighbors-knn-ml_cn_2)
{% endcontent-ref %}

## Support Vector Machine

This function finds the K number of training examples closest (nearest neighbors) to the input data and then classifying the input data based on the majority class of its nearest neighbors.

{% content-ref url="machine-learning/support-vector-machine-ml\_cn\_3" %}
[support-vector-machine-ml\_cn\_3](https://docs.autogon.ai/autogon-engine-studio/machine-learning/support-vector-machine-ml_cn_3)
{% endcontent-ref %}

## Kernel SVM

This function finds the K number of training examples closest (nearest neighbors) to the input data and then classifying the input data based on the majority class of its nearest neighbors.

{% content-ref url="machine-learning/kernel-svm-ml\_cn\_4" %}
[kernel-svm-ml\_cn\_4](https://docs.autogon.ai/autogon-engine-studio/machine-learning/kernel-svm-ml_cn_4)
{% endcontent-ref %}

## Naive Bayes

This function finds the K number of training examples closest (nearest neighbors) to the input data and then classifying the input data based on the majority class of its nearest neighbors.

{% content-ref url="machine-learning/naive-bayes-ml\_cn\_5" %}
[naive-bayes-ml\_cn\_5](https://docs.autogon.ai/autogon-engine-studio/machine-learning/naive-bayes-ml_cn_5)
{% endcontent-ref %}

## Decision Tree Classification

This function finds the K number of training examples closest (nearest neighbors) to the input data and then classifying the input data based on the majority class of its nearest neighbors.

{% content-ref url="machine-learning/decision-tree-classification-ml\_cn\_6" %}
[decision-tree-classification-ml\_cn\_6](https://docs.autogon.ai/autogon-engine-studio/machine-learning/decision-tree-classification-ml_cn_6)
{% endcontent-ref %}

## Random Forest Classification

This function finds the K number of training examples closest (nearest neighbors) to the input data and then classifying the input data based on the majority class of its nearest neighbors.

{% content-ref url="machine-learning/random-forest-classification-ml\_cn\_7" %}
[random-forest-classification-ml\_cn\_7](https://docs.autogon.ai/autogon-engine-studio/machine-learning/random-forest-classification-ml_cn_7)
{% endcontent-ref %}
