Framework for machine and deep learning, with regression, classification and time series analysis
Project description
Welcome to LeCrapaud
An all-in-one machine learning framework
🚀 Introduction
LeCrapaud is a high-level Python library for end-to-end machine learning workflows on tabular data, with a focus on financial and stock datasets. It provides a simple API to handle feature engineering, model selection, training, and prediction, all in a reproducible and modular way.
✨ Key Features
- 🧩 Modular pipeline: Feature engineering, preprocessing, selection, and modeling as independent steps
- 🤖 Automated model selection and hyperparameter optimization
- 📊 Easy integration with pandas DataFrames
- 🔬 Supports both regression and classification tasks
- 🛠️ Simple API for both full pipeline and step-by-step usage
- 📦 Ready for production and research workflows
⚡ Quick Start
Install the package
pip install lecrapaud
How it works
This package provides a high-level API to manage experiments for feature engineering, model selection, and prediction on tabular data (e.g. stock data).
Typical workflow
from lecrapaud import LeCrapaud
# 1. Create the main app
app = LeCrapaud()
# 2. Define your experiment context (see your notebook or api.py for all options)
context = {
"data": your_dataframe,
"columns_drop": [...],
"columns_date": [...],
# ... other config options
}
# 3. Create an experiment
experiment = app.create_experiment(**context)
# 4. Run the full training pipeline
experiment.train(your_dataframe)
# 5. Make predictions on new data
predictions = experiment.predict(new_data)
Modular usage
You can also use each step independently:
data_eng = experiment.feature_engineering(data)
train, val, test = experiment.preprocess_feature(data_eng)
features = experiment.feature_selection(train)
std_data, reshaped_data = experiment.preprocess_model(train, val, test)
experiment.model_selection(std_data, reshaped_data)
🤝 Contributing
Reminders for Github usage
- Creating Github repository
$ brew install gh
$ gh auth login
$ gh repo create
- Initializing git and first commit to distant repository
$ git init
$ git add .
$ git commit -m 'first commit'
$ git remote add origin <YOUR_REPO_URL>
$ git push -u origin master
-
Use conventional commits
https://www.conventionalcommits.org/en/v1.0.0/#summary -
Create environment
$ pip install virtualenv
$ python -m venv .venv
$ source .venv/bin/activate
- Install dependencies
$ make install
- Deactivate virtualenv (if needed)
$ deactivate
Pierre Gallet © 2025
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 lecrapaud-0.4.1.tar.gz.
File metadata
- Download URL: lecrapaud-0.4.1.tar.gz
- Upload date:
- Size: 73.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b45561a72425215dcfbb69d358d676da8c561a639c0247fa2eb4cbfbe271c971
|
|
| MD5 |
50e93463e3aca21e911a6abb1ca2d781
|
|
| BLAKE2b-256 |
2ac45e568e73afbe0f82ad9ac841f5c0f60b48abaead58e0aae10a8036b32221
|
File details
Details for the file lecrapaud-0.4.1-py3-none-any.whl.
File metadata
- Download URL: lecrapaud-0.4.1-py3-none-any.whl
- Upload date:
- Size: 98.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc6a9e34eb9e0306adc5a54698092b2f0b3f5bbd14539c336153a164c300ef11
|
|
| MD5 |
ee19042cbcc966f005b5bf6abbd2cfea
|
|
| BLAKE2b-256 |
cc1631f11868f59420e5e6cc6bbca715a1e79f8d43ad95de1db98dc39bd5df0a
|