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.1.2.tar.gz
(10.5 kB
view hashes)
Built Distribution
litelearn-0.1.2-py3-none-any.whl
(12.3 kB
view hashes)
Close
Hashes for litelearn-0.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ad039481f008340e2960f96e073d236657e4f3bde8113eed2f63ebd555a0f5d |
|
MD5 | 0b3992916b7c6a353a1208493c918731 |
|
BLAKE2b-256 | baf24706ccc04f836f486d7d4ca236bbabc0d8a86527e694590b2e6d88fd2543 |