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.6.tar.gz
(11.3 kB
view hashes)
Built Distribution
litelearn-0.2.6-py3-none-any.whl
(13.1 kB
view hashes)
Close
Hashes for litelearn-0.2.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1ac4cd3382335454e8720e9217b7f4f3f0a645fb608ab6b12899ee9b721a6d0 |
|
MD5 | 0f95cad98320be112a6eacda9953366a |
|
BLAKE2b-256 | 8346cd65343f0dad97db6d8648779577af56c28574ce20d79a89ffcda3c5eff1 |