Accelerating machine learning during the exploratory phase
Project description
EmeraldML
A machine learning library for streamlining the process of (1) cleaning and splitting data, (2) training, optimizing, and testing various models based on the task, and (3) scoring and ranking them during the exploratory phase for an elementary analysis of which models perform better for a specific dataset.
Demo
Getting the data:
import pandas as pd
audi = pd.read_csv('audi.csv')
audi.head()
| | model | year | price | transmission | mileage | fuelType | tax | mpg | engineSize |
|---:|:--------|-------:|--------:|:---------------|----------:|:-----------|------:|------:|-------------:|
| 0 | A1 | 2017 | 12500 | Manual | 15735 | Petrol | 150 | 55.4 | 1.4 |
| 1 | A6 | 2016 | 16500 | Automatic | 36203 | Diesel | 20 | 64.2 | 2 |
| 2 | A1 | 2016 | 11000 | Manual | 29946 | Petrol | 30 | 55.4 | 1.4 |
| 3 | A4 | 2017 | 16800 | Automatic | 25952 | Diesel | 145 | 67.3 | 2 |
| 4 | A3 | 2019 | 17300 | Manual | 1998 | Petrol | 145 | 49.6 | 1 |
Using EmeraldML:
import emerald
from emerald.boa import RegressionBoa
rboa = RegressionBoa(random_state=3)
rboa.hunt(data=audi, target='price')
rboa.ladder
[(OptimalRFRegressor, 0.9624889664024406),
(OptimalDTRegressor, 0.9514992411732952),
(OptimalKNRegressor, 0.9511411883559433),
(OptimalLinearRegression, 0.8876961846248467),
(OptimalABRegressor, 0.8491539140007975)]
for i in range(len(rboa)):
print(rboa.model(i))
RandomForestRegressor(min_samples_split=5, n_estimators=500, random_state=3)
DecisionTreeRegressor(max_depth=15, min_samples_split=10, random_state=3)
KNeighborsRegressor(n_neighbors=3, p=1)
LinearRegression()
AdaBoostRegressor(learning_rate=0.1, n_estimators=100, random_state=3)
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file emeraldml-0.0.1.tar.gz.
File metadata
- Download URL: emeraldml-0.0.1.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc0c9ff1185105cc3d2e9237fe1e400a8550a4b71c3eee1d2745b458239f9ec7
|
|
| MD5 |
ccf792c706abe32f0b5ee842c6cbb64e
|
|
| BLAKE2b-256 |
514b4b4794d08de7d85cf9085d8f5af5133dd99a20eb8695d31b340adc7e53fd
|
File details
Details for the file emeraldml-0.0.1-py3-none-any.whl.
File metadata
- Download URL: emeraldml-0.0.1-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6b1f365e3ed52f1341a6ced44053ea31138e38d402339f0b1f31790e1bbf395
|
|
| MD5 |
16628e72c301af960e832f0eaf026dcb
|
|
| BLAKE2b-256 |
edf7ee9969356bf67265a8be6380fa72f2917669d96138e30b082c560ed0d60e
|