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.5.tar.gz
(11.4 kB
view hashes)
Built Distribution
litelearn-0.2.5-py3-none-any.whl
(13.1 kB
view hashes)
Close
Hashes for litelearn-0.2.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bcee2a27485ee2c7b72423d25a3e23315748439636df365135b8fa64974c4a0 |
|
MD5 | 333e21cefd20e37e41b71ffb273c9f4f |
|
BLAKE2b-256 | 4963ebbc2051907436160cd677e42e67d06b4fbbd525f4912bb03878fdf14e2a |