Run the following command from inside an activated Conda Env to install the GAMA library with Pip:
%% Cell type:code id:bded45a9 tags:
``` python
# pip install gama
# *or*
# pip3 install gama
```
%% Cell type:markdown id:32af5ac3 tags:
TODO: I think GAMA requires python=3.9? I cant get it to work. -- Dirk
%% Cell type:markdown id:192cbbad tags:
Alternatively, the source code can be downloaded from the following Github repository:
https://github.com/openml-labs/gama
%% Cell type:markdown id:ce52d2cf tags:
## Accessing the Software
%% Cell type:markdown id:ebfccd27 tags:
To access the GAMA library after it is installed, run the following Python import command:
%% Cell type:code id:00a14ad0 tags:
``` python
importgama
```
%% Cell type:markdown id:ad7f01c2 tags:
## Overview
%% Cell type:markdown id:bedce649 tags:
GAMA is an AutoML package that generates optimized machine learning pipelines, given specific input data and resource constraints. To simplify intensive labor work of selecting the correct algorithm, all the user needs to do is supply the data, and GAMA will automatically try to find a good machine learning pipeline by considering data preprocessing steps, machine learning algorithm, and hyperparameter configurations. GAMA can also combine multiple tuned machine learning pipelines together into an ensemble, which can help model performance. GAMA is currently restricted to classification and regression problems on tabular data. <br><br>
For more information about GAMA, see the link below:
In addition to its general use AutoML functionality, GAMA aims to serve AutoML researchers as well. During the optimization process, GAMA keeps an extensive log of progress made. Using this log, insight can be obtained on the behaviour of the search procedure. For example, it can produce a graph that shows pipeline fitness over time: graph of fitness over time
%% Cell type:markdown id:5b3d0114 tags:
## Code Examples
%% Cell type:markdown id:6c9141bd tags:
For detailed API documentation see the following link:
Starting `fit` which will take roughly 3 minutes...
MSE: 17.566521076771657
%% Cell type:markdown id:a8051ac9 tags:
## Applications
%% Cell type:markdown id:cc6caab0 tags:
This tool could be helpful when we are in the preprocessing stage and when we are comparing various models, this would be a great tool to understand which kinds of models would be best for the given data set and a create a foundation for your model. GAMA can also combine multiple tuned machine learning pipelines together into an ensemble, which should help model performance. Due to the current version of GAMA this tool currently restricted to classification and regression datasets.