Auto Gradient Boosting , is a mathematics API written in Python.
Project description
Auto_Gradient_Boosting
Implementation of auto gradient boosting algorithm This repository hosts the development of the Auto_Gradient_Boosting.
About Awesome Linear Regression
Auto_Gradient_Boosting , is a mathematics API written in Python. It was developed with a focus on enabling fast experimentation. Being able to go from idea to result as fast as possible is key to doing good research.
Auto_Gradient_Boosting is:
- Simple
- Flexible
- Powerful
First contact with Awesome Linear Regression
The core data structures of Auto_Gradient_Boosting are consign and result.
For installation run :
pip install Auto-Gradient-Boosting
Here is an exemple
:
import numpy as np
from Auto_Gradient_Boosting import AGB
# Sample training data set
x = np.matrix([[0,1],[1,4],[7,8],[50,23]])
y = np.matrix([[2],[9],[23],[96]])
# Train the model
learning_rate = 0.01
agb = AGB(x,y,learning_rate)
Let make prediction
px = np.matrix([[4,7]])
print(agb.predict(px))
Support
You can ask questions and join the development discussion:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file Auto_Gradient_Boosting-1.0.0.tar.gz
.
File metadata
- Download URL: Auto_Gradient_Boosting-1.0.0.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86b2f707986fd9b3657e6084cc2c860177090afe7285e2075b2b4dd4660116d3 |
|
MD5 | 4f8a6c32922fe5375886e9d1199a4e1c |
|
BLAKE2b-256 | ca4a5757d7e28c278817251656de0c24068917691373199d5d4993a518095a04 |
File details
Details for the file Auto_Gradient_Boosting-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: Auto_Gradient_Boosting-1.0.0-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68e51fd1136eed21bd839e0d4883640b19b6f183897646ff3714f6d60d15da5f |
|
MD5 | 0b5b4423e2e065990e505b5ef091da40 |
|
BLAKE2b-256 | 5fdfad108a755c52499fad0a4c9a8d5f6019a4580e077e2c9d8c36da26b8e732 |