Views
No views yet



pip install automl-lite1from automl_lite import AutoMLite
2import pandas as pd
3
4# Load your data
5data = pd.read_csv('your_data.csv')
6
7# Initialize AutoML (zero configuration!)
8automl = AutoMLite(time_budget=300)
9
10# Train and get the best model
11best_model = automl.fit(data, target_column='target')
12
13# Make predictions
14predictions = automl.predict(new_data)1config = {
2 'time_budget': 600,
3 'max_models': 20,
4 'cv_folds': 5,
5 'feature_engineering': True,
6 'ensemble_method': 'voting',
7 'interpretability': True
8}
9
10automl = AutoMLite(**config)1automl = AutoMLite(problem_type='time_series')
2model = automl.fit(data, target_column='sales', date_column='date')
3forecast = automl.predict_future(periods=30)1automl = AutoMLite(
2 include_deep_learning=True,
3 deep_learning_framework='tensorflow'
4)
5model = automl.fit(data, target_column='target')1# Basic usage
2automl-lite train data.csv --target target_column
3
4# With custom config
5automl-lite train data.csv --target target_column --config config.yaml
6
7# Generate report
8automl-lite report --model model.pkl --output report.html1from automl_lite.ui import launch_dashboard
2launch_dashboard(automl)1# Get SHAP values
2shap_values = automl.explain_model(X_test)
3
4# Feature importance
5importance = automl.get_feature_importance()
6
7# Partial dependence plots
8automl.plot_partial_dependence('feature_name')pip install automl-lite1git clone https://github.com/Sherin-SEF-AI/AutoML-Lite.git
2cd AutoML-Lite
3pip install -e .| Feature | AutoML Lite | Other Libraries |
|---|---|---|
| Setup Time | 30 seconds | 30+ minutes |
| Configuration | Zero required | Complex configs |
| Production Ready | ✅ Built-in | ❌ Manual setup |
| Deep Learning | ✅ Integrated | ❌ Separate setup |
| Time Series | ✅ Native support | ❌ Limited |
| Interpretability | ✅ Advanced | ❌ Basic |
| Experiment Tracking | ✅ Multi-platform | ❌ Limited |
| Interactive Reports | ✅ Beautiful HTML | ❌ Basic plots |
pip install automl-lite