a python library for quickly building and evaluating models
Project description
litelearn
a python library for building models without fussing over the nitty gritty details for data munging
once you have a pandas dataframe you can create a model
for your dataset in 3 lines of code:
# load some dataset
import seaborn as sns
dataset = "penguins"
target = "body_mass_g"
df = sns.load_dataset(dataset).dropna(subset=[target])
# just 3 lines of code to create
# and evaluate a model
import litelearn as ll
model = ll.core_regress_df(df, target)
result = model.get_evaluation()
installation
pip install litelearn
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
litelearn-0.2.8.tar.gz
(11.5 kB
view details)
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
litelearn-0.2.8-py3-none-any.whl
(13.4 kB
view details)
File details
Details for the file litelearn-0.2.8.tar.gz.
File metadata
- Download URL: litelearn-0.2.8.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.9.7 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4f3d1c87e79722ed266e828f2ffc42878e3eff1fcf25e82612727d1e71eff85
|
|
| MD5 |
a7b21798b5455c5c0e1c4ce0c74cc139
|
|
| BLAKE2b-256 |
08ca60daac1dff26c0c03484edd88d221be0de97a678a69a2308c748f99a2604
|
File details
Details for the file litelearn-0.2.8-py3-none-any.whl.
File metadata
- Download URL: litelearn-0.2.8-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.9.7 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fbc787b76f6512ec2a997e35613d58aaa3de83e8b658c9d670397904f7731b2
|
|
| MD5 |
24575ce66bf059973ec404f536f157e0
|
|
| BLAKE2b-256 |
75df0d4435869d25414ec6c675b174a0e84d2138d3262b66c84557ba9a1344ec
|