swiftpredict-v2 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- swiftpredict_v2-0.2.0/LICENSE +5 -0
- swiftpredict_v2-0.2.0/PKG-INFO +225 -0
- swiftpredict_v2-0.2.0/README.md +197 -0
- swiftpredict_v2-0.2.0/backend/app/__init__.py +14 -0
- swiftpredict_v2-0.2.0/backend/app/api/logger_apis.py +277 -0
- swiftpredict_v2-0.2.0/backend/app/client/__init__.py +0 -0
- swiftpredict_v2-0.2.0/backend/app/client/swift_predict.py +189 -0
- swiftpredict_v2-0.2.0/backend/app/core/config.py +69 -0
- swiftpredict_v2-0.2.0/backend/app/services/__init__.py +1 -0
- swiftpredict_v2-0.2.0/backend/app/services/automl_trainer.py +121 -0
- swiftpredict_v2-0.2.0/backend/app/services/preprocessing.py +499 -0
- swiftpredict_v2-0.2.0/backend/test.py +75 -0
- swiftpredict_v2-0.2.0/pyproject.toml +44 -0
- swiftpredict_v2-0.2.0/setup.cfg +4 -0
- swiftpredict_v2-0.2.0/swiftpredict/__init__.py +21 -0
- swiftpredict_v2-0.2.0/swiftpredict/cli.py +62 -0
- swiftpredict_v2-0.2.0/swiftpredict/index.html +835 -0
- swiftpredict_v2-0.2.0/swiftpredict_v2.egg-info/PKG-INFO +225 -0
- swiftpredict_v2-0.2.0/swiftpredict_v2.egg-info/SOURCES.txt +21 -0
- swiftpredict_v2-0.2.0/swiftpredict_v2.egg-info/dependency_links.txt +1 -0
- swiftpredict_v2-0.2.0/swiftpredict_v2.egg-info/entry_points.txt +2 -0
- swiftpredict_v2-0.2.0/swiftpredict_v2.egg-info/requires.txt +16 -0
- swiftpredict_v2-0.2.0/swiftpredict_v2.egg-info/top_level.txt +2 -0
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: swiftpredict-v2
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: A lightweight AutoML and experiment tracking library with FastAPI backend and Python SDK. Works locally with MongoDB.
|
|
5
|
+
Author-email: Manas Ranjan Jena <mranjanjena253@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ManasRanjanJena253/SwiftPredict
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Requires-Dist: fastapi
|
|
12
|
+
Requires-Dist: uvicorn
|
|
13
|
+
Requires-Dist: pymongo
|
|
14
|
+
Requires-Dist: click
|
|
15
|
+
Requires-Dist: scikit-learn
|
|
16
|
+
Requires-Dist: matplotlib
|
|
17
|
+
Requires-Dist: seaborn
|
|
18
|
+
Requires-Dist: pandas
|
|
19
|
+
Requires-Dist: numpy
|
|
20
|
+
Requires-Dist: requests
|
|
21
|
+
Requires-Dist: imbalanced-learn
|
|
22
|
+
Requires-Dist: xgboost
|
|
23
|
+
Requires-Dist: lightgbm
|
|
24
|
+
Requires-Dist: scipy
|
|
25
|
+
Requires-Dist: tqdm
|
|
26
|
+
Requires-Dist: spacy
|
|
27
|
+
Dynamic: license-file
|
|
28
|
+
|
|
29
|
+
ο»Ώ# π SwiftPredict: Lightweight, Local AutoML and Experiment Tracking Suite
|
|
30
|
+
|
|
31
|
+
Welcome to **SwiftPredict**, a blazing-fast, fully local AutoML + experiment tracking library built for ML engineers, data scientists, and researchers who prefer *privacy*, *flexibility*, and *control*. With an intuitive Python SDK, powerful FastAPI backend, and a modern UI (React/Next.js), SwiftPredict is the perfect open-source companion to your machine learning pipeline.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## π§ What Is SwiftPredict?
|
|
36
|
+
|
|
37
|
+
### SwiftPredict is a fully local AutoML library that helps you:
|
|
38
|
+
|
|
39
|
+
- #### π§ Automatically detect your ML task (classification/regression)
|
|
40
|
+
- #### βοΈ Preprocess data intelligently (handle nulls, imbalance, encode categories)
|
|
41
|
+
- #### πββοΈ Run multiple ML models with cross-validation
|
|
42
|
+
- #### π Track all your experiments in MongoDB
|
|
43
|
+
- #### π Visualize training metrics using matplotlib/seaborn
|
|
44
|
+
- #### π§ͺ Compare model performance instantly
|
|
45
|
+
- #### π₯οΈ Access everything via a clean web UI
|
|
46
|
+
- #### π§© Use a native Python SDK for logging and predictions
|
|
47
|
+
|
|
48
|
+
All without sending a **single byte to the cloud**.
|
|
49
|
+
|
|
50
|
+
> ## You own your data. You own your pipeline.
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## π¦ Installation
|
|
55
|
+
|
|
56
|
+
### π Requirements
|
|
57
|
+
- Python 3.8+
|
|
58
|
+
- MongoDB installed locally and running on default port
|
|
59
|
+
|
|
60
|
+
### π Install with pip (editable mode for development)
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
git clone https://github.com/ManasRanjanJena253/SwiftPredict.git
|
|
64
|
+
cd SwiftPredict
|
|
65
|
+
pip install -e .
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
### Make sure mongodb is running locally. You can install it from [MongoDB](https://www.mongodb.com/try/download/community)
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
## βοΈ How It Works
|
|
73
|
+
|
|
74
|
+
### π§± Modular Architecture
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
pgsql
|
|
78
|
+
Copy
|
|
79
|
+
Edit
|
|
80
|
+
SwiftPredict/
|
|
81
|
+
βββ backend/
|
|
82
|
+
β βββ app/
|
|
83
|
+
β β βββ services/ β AutoML core: training, preprocessing
|
|
84
|
+
β β βββ client/ β SDK for prediction and logging
|
|
85
|
+
β β βββ api/ β FastAPI endpoints
|
|
86
|
+
β β βββ core/ β Global settings, config
|
|
87
|
+
β β βββ main.py β API entry point
|
|
88
|
+
βββ frontend/ β React-based UI (optional)
|
|
89
|
+
βββ cli.py β CLI launcher
|
|
90
|
+
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
# π§ͺ Quickstart
|
|
96
|
+
### 1. Launch the API + UI
|
|
97
|
+
```bash
|
|
98
|
+
pip install swiftpredict_dev
|
|
99
|
+
swiftpredict launch ui
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
# Train
|
|
105
|
+
>automl = AutoML(logger=logger)
|
|
106
|
+
|
|
107
|
+
>automl.train(X, y, task=task)
|
|
108
|
+
|
|
109
|
+
---
|
|
110
|
+
|
|
111
|
+
## β
Why Use SwiftPredict?
|
|
112
|
+
|
|
113
|
+
SwiftPredict stands out as a fully local, transparent, and developer-friendly AutoML tool. Here's how it compares to other popular libraries:
|
|
114
|
+
|
|
115
|
+
| **Feature** | **SwiftPredict π’** | **Auto-Sklearn βͺ** | **H2O.ai βͺ** | **Weka βͺ** |
|
|
116
|
+
|---------------------------------|---------------------|--------------------|------------------|------------------|
|
|
117
|
+
| Fully Local | β
| β | β | β
|
|
|
118
|
+
| No Cloud Required | β
| β | β | β
|
|
|
119
|
+
| Customizable Preprocessing | β
| β οΈ Limited | β οΈ | β |
|
|
120
|
+
| MongoDB-based Run Tracking | β
| β | β | β |
|
|
121
|
+
| Built-in Web UI | β
| β | β
| β |
|
|
122
|
+
| Python SDK | β
| β
| β οΈ Java Only | β οΈ |
|
|
123
|
+
| CLI Support | β
| β
| β
| β
|
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## π Current Limitations
|
|
128
|
+
### Although SwiftPredict is powerful for fast iteration and tracking, it is still in its early phase.
|
|
129
|
+
|
|
130
|
+
### π» Known limitations:
|
|
131
|
+
* #### No GPU support yet (only CPU-based scikit-learn and XGBoost models)
|
|
132
|
+
* #### No advanced hyperparameter tuning (Bayesian / Optuna-style)
|
|
133
|
+
* #### No deep learning models (planned)
|
|
134
|
+
* #### Currently supports only classification and regression
|
|
135
|
+
* #### Basic visualizations β more dashboards coming
|
|
136
|
+
|
|
137
|
+
---
|
|
138
|
+
|
|
139
|
+
## π Whatβs Coming Next?
|
|
140
|
+
### Hereβs our upcoming roadmap :
|
|
141
|
+
|
|
142
|
+
### π§ Algorithmic Improvements
|
|
143
|
+
1. #### β
Model Ensemble (stacking, voting, weighted averaging)
|
|
144
|
+
2. #### π² Gradient boosting chains & hybrid methods
|
|
145
|
+
3. #### π² Feature selection via SHAP/Permutation importance
|
|
146
|
+
4. #### π§Ό Preprocessing Advancements
|
|
147
|
+
5. #### β
Advanced binning & quantile transformation
|
|
148
|
+
6. #### π² Time-series support
|
|
149
|
+
|
|
150
|
+
### π MLOps & UI
|
|
151
|
+
1. #### β
Streamlit-powered live dashboards
|
|
152
|
+
2. #### π² Experiment comparison grid with filters
|
|
153
|
+
3. #### π² Model versioning + rollback
|
|
154
|
+
|
|
155
|
+
---
|
|
156
|
+
|
|
157
|
+
## π₯ Contributing
|
|
158
|
+
### I welcome all contributors β whether you're an AI enthusiast, frontend dev, MLOps engineer, or just someone curious about AutoML.
|
|
159
|
+
|
|
160
|
+
---
|
|
161
|
+
|
|
162
|
+
## π₯ How to Contribute
|
|
163
|
+
|
|
164
|
+
SwiftPredict is not just a library β it's a growing ecosystem. Whether you're a researcher, ML engineer, full-stack dev, or an open-source enthusiast, there are many ways you can contribute and make an impact.
|
|
165
|
+
|
|
166
|
+
### π§ Here are some great ways to get involved:
|
|
167
|
+
|
|
168
|
+
- **π§ Add New Models or Preprocessing Techniques**
|
|
169
|
+
> Enhance SwiftPredictβs AutoML engine by integrating new algorithms (e.g., CatBoost, ExtraTrees), or by writing custom preprocessing utilities like advanced binning, outlier detection, feature generation, etc.
|
|
170
|
+
|
|
171
|
+
- **π§ͺ Test the Library & Build on It**
|
|
172
|
+
> Use SwiftPredict in your own projects and experiment with building custom pipelines. Try writing your own `handle_*` functions or test new model selection strategies β if it's useful, consider contributing it!
|
|
173
|
+
|
|
174
|
+
- **πΌ Improve the Frontend UI**
|
|
175
|
+
> If you're comfortable with React, TypeScript, or Tailwind CSS β jump into the frontend and help build powerful dashboards, charts, and run explorers.
|
|
176
|
+
|
|
177
|
+
- **β
Write Tests / Add CI/CD Support**
|
|
178
|
+
> Help me build a robust testing suite and automate testing across contributions. Add GitHub Actions, coverage reports, and sanity checks.
|
|
179
|
+
|
|
180
|
+
- **π Improve Documentation**
|
|
181
|
+
> Good documentation is the backbone of open source. Help by clarifying usage, adding examples, or expanding on internal logic.
|
|
182
|
+
|
|
183
|
+
- **π‘ Report Bugs or Suggest Features**
|
|
184
|
+
> Found a bug or have a game-changing idea? Open an issue and weβll discuss it together!
|
|
185
|
+
|
|
186
|
+
---
|
|
187
|
+
|
|
188
|
+
### β‘ Getting Started Is Simple
|
|
189
|
+
|
|
190
|
+
1. Fork the repo π΄
|
|
191
|
+
2. Create a new branch π
|
|
192
|
+
3. Make your changes β
|
|
193
|
+
4. Submit a pull request with a clear description π¬
|
|
194
|
+
|
|
195
|
+
We welcome both small and large contributions β whether it's fixing typos, creating a new ensemble strategy, or building an entire UI module. **Every contribution counts.**
|
|
196
|
+
|
|
197
|
+
> Letβs build the future of open, local-first AutoML together. π»π§ͺ
|
|
198
|
+
Let me know if you also want a CONTRIBUTING.md with formatting guidelines, code style, and environment setup instructions. This will boost the credibility of your repo and help new contributors onboard faster.
|
|
199
|
+
---
|
|
200
|
+
|
|
201
|
+
## π€ Contact
|
|
202
|
+
### Author: Manas Ranjan Jena
|
|
203
|
+
|
|
204
|
+
### Email: mranjanjena253@gmail.com
|
|
205
|
+
|
|
206
|
+
### GitHub: @ManasRanjanJena253
|
|
207
|
+
|
|
208
|
+
### LinkedIn: manasranjanjena253
|
|
209
|
+
|
|
210
|
+
---
|
|
211
|
+
|
|
212
|
+
## π‘ License
|
|
213
|
+
|
|
214
|
+
### MIT License β You are free to use, modify, and distribute SwiftPredict with proper attribution.
|
|
215
|
+
|
|
216
|
+
---
|
|
217
|
+
|
|
218
|
+
## π‘ Summary
|
|
219
|
+
* #### SwiftPredict is the ideal AutoML tool if you:
|
|
220
|
+
* #### Want full control over your data and pipeline
|
|
221
|
+
* #### Need a fast, local, and visual way to iterate on models
|
|
222
|
+
* #### Prefer Python-native workflows without any vendor lock-in
|
|
223
|
+
* #### Care about privacy, reproducibility, and open-source flexibility
|
|
224
|
+
|
|
225
|
+
* #### No cloud, no noise. Just pure ML automation at your fingertips.
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
ο»Ώ# π SwiftPredict: Lightweight, Local AutoML and Experiment Tracking Suite
|
|
2
|
+
|
|
3
|
+
Welcome to **SwiftPredict**, a blazing-fast, fully local AutoML + experiment tracking library built for ML engineers, data scientists, and researchers who prefer *privacy*, *flexibility*, and *control*. With an intuitive Python SDK, powerful FastAPI backend, and a modern UI (React/Next.js), SwiftPredict is the perfect open-source companion to your machine learning pipeline.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## π§ What Is SwiftPredict?
|
|
8
|
+
|
|
9
|
+
### SwiftPredict is a fully local AutoML library that helps you:
|
|
10
|
+
|
|
11
|
+
- #### π§ Automatically detect your ML task (classification/regression)
|
|
12
|
+
- #### βοΈ Preprocess data intelligently (handle nulls, imbalance, encode categories)
|
|
13
|
+
- #### πββοΈ Run multiple ML models with cross-validation
|
|
14
|
+
- #### π Track all your experiments in MongoDB
|
|
15
|
+
- #### π Visualize training metrics using matplotlib/seaborn
|
|
16
|
+
- #### π§ͺ Compare model performance instantly
|
|
17
|
+
- #### π₯οΈ Access everything via a clean web UI
|
|
18
|
+
- #### π§© Use a native Python SDK for logging and predictions
|
|
19
|
+
|
|
20
|
+
All without sending a **single byte to the cloud**.
|
|
21
|
+
|
|
22
|
+
> ## You own your data. You own your pipeline.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## π¦ Installation
|
|
27
|
+
|
|
28
|
+
### π Requirements
|
|
29
|
+
- Python 3.8+
|
|
30
|
+
- MongoDB installed locally and running on default port
|
|
31
|
+
|
|
32
|
+
### π Install with pip (editable mode for development)
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
git clone https://github.com/ManasRanjanJena253/SwiftPredict.git
|
|
36
|
+
cd SwiftPredict
|
|
37
|
+
pip install -e .
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Make sure mongodb is running locally. You can install it from [MongoDB](https://www.mongodb.com/try/download/community)
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## βοΈ How It Works
|
|
45
|
+
|
|
46
|
+
### π§± Modular Architecture
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
pgsql
|
|
50
|
+
Copy
|
|
51
|
+
Edit
|
|
52
|
+
SwiftPredict/
|
|
53
|
+
βββ backend/
|
|
54
|
+
β βββ app/
|
|
55
|
+
β β βββ services/ β AutoML core: training, preprocessing
|
|
56
|
+
β β βββ client/ β SDK for prediction and logging
|
|
57
|
+
β β βββ api/ β FastAPI endpoints
|
|
58
|
+
β β βββ core/ β Global settings, config
|
|
59
|
+
β β βββ main.py β API entry point
|
|
60
|
+
βββ frontend/ β React-based UI (optional)
|
|
61
|
+
βββ cli.py β CLI launcher
|
|
62
|
+
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
# π§ͺ Quickstart
|
|
68
|
+
### 1. Launch the API + UI
|
|
69
|
+
```bash
|
|
70
|
+
pip install swiftpredict_dev
|
|
71
|
+
swiftpredict launch ui
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
# Train
|
|
77
|
+
>automl = AutoML(logger=logger)
|
|
78
|
+
|
|
79
|
+
>automl.train(X, y, task=task)
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## β
Why Use SwiftPredict?
|
|
84
|
+
|
|
85
|
+
SwiftPredict stands out as a fully local, transparent, and developer-friendly AutoML tool. Here's how it compares to other popular libraries:
|
|
86
|
+
|
|
87
|
+
| **Feature** | **SwiftPredict π’** | **Auto-Sklearn βͺ** | **H2O.ai βͺ** | **Weka βͺ** |
|
|
88
|
+
|---------------------------------|---------------------|--------------------|------------------|------------------|
|
|
89
|
+
| Fully Local | β
| β | β | β
|
|
|
90
|
+
| No Cloud Required | β
| β | β | β
|
|
|
91
|
+
| Customizable Preprocessing | β
| β οΈ Limited | β οΈ | β |
|
|
92
|
+
| MongoDB-based Run Tracking | β
| β | β | β |
|
|
93
|
+
| Built-in Web UI | β
| β | β
| β |
|
|
94
|
+
| Python SDK | β
| β
| β οΈ Java Only | β οΈ |
|
|
95
|
+
| CLI Support | β
| β
| β
| β
|
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## π Current Limitations
|
|
100
|
+
### Although SwiftPredict is powerful for fast iteration and tracking, it is still in its early phase.
|
|
101
|
+
|
|
102
|
+
### π» Known limitations:
|
|
103
|
+
* #### No GPU support yet (only CPU-based scikit-learn and XGBoost models)
|
|
104
|
+
* #### No advanced hyperparameter tuning (Bayesian / Optuna-style)
|
|
105
|
+
* #### No deep learning models (planned)
|
|
106
|
+
* #### Currently supports only classification and regression
|
|
107
|
+
* #### Basic visualizations β more dashboards coming
|
|
108
|
+
|
|
109
|
+
---
|
|
110
|
+
|
|
111
|
+
## π Whatβs Coming Next?
|
|
112
|
+
### Hereβs our upcoming roadmap :
|
|
113
|
+
|
|
114
|
+
### π§ Algorithmic Improvements
|
|
115
|
+
1. #### β
Model Ensemble (stacking, voting, weighted averaging)
|
|
116
|
+
2. #### π² Gradient boosting chains & hybrid methods
|
|
117
|
+
3. #### π² Feature selection via SHAP/Permutation importance
|
|
118
|
+
4. #### π§Ό Preprocessing Advancements
|
|
119
|
+
5. #### β
Advanced binning & quantile transformation
|
|
120
|
+
6. #### π² Time-series support
|
|
121
|
+
|
|
122
|
+
### π MLOps & UI
|
|
123
|
+
1. #### β
Streamlit-powered live dashboards
|
|
124
|
+
2. #### π² Experiment comparison grid with filters
|
|
125
|
+
3. #### π² Model versioning + rollback
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
## π₯ Contributing
|
|
130
|
+
### I welcome all contributors β whether you're an AI enthusiast, frontend dev, MLOps engineer, or just someone curious about AutoML.
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
## π₯ How to Contribute
|
|
135
|
+
|
|
136
|
+
SwiftPredict is not just a library β it's a growing ecosystem. Whether you're a researcher, ML engineer, full-stack dev, or an open-source enthusiast, there are many ways you can contribute and make an impact.
|
|
137
|
+
|
|
138
|
+
### π§ Here are some great ways to get involved:
|
|
139
|
+
|
|
140
|
+
- **π§ Add New Models or Preprocessing Techniques**
|
|
141
|
+
> Enhance SwiftPredictβs AutoML engine by integrating new algorithms (e.g., CatBoost, ExtraTrees), or by writing custom preprocessing utilities like advanced binning, outlier detection, feature generation, etc.
|
|
142
|
+
|
|
143
|
+
- **π§ͺ Test the Library & Build on It**
|
|
144
|
+
> Use SwiftPredict in your own projects and experiment with building custom pipelines. Try writing your own `handle_*` functions or test new model selection strategies β if it's useful, consider contributing it!
|
|
145
|
+
|
|
146
|
+
- **πΌ Improve the Frontend UI**
|
|
147
|
+
> If you're comfortable with React, TypeScript, or Tailwind CSS β jump into the frontend and help build powerful dashboards, charts, and run explorers.
|
|
148
|
+
|
|
149
|
+
- **β
Write Tests / Add CI/CD Support**
|
|
150
|
+
> Help me build a robust testing suite and automate testing across contributions. Add GitHub Actions, coverage reports, and sanity checks.
|
|
151
|
+
|
|
152
|
+
- **π Improve Documentation**
|
|
153
|
+
> Good documentation is the backbone of open source. Help by clarifying usage, adding examples, or expanding on internal logic.
|
|
154
|
+
|
|
155
|
+
- **π‘ Report Bugs or Suggest Features**
|
|
156
|
+
> Found a bug or have a game-changing idea? Open an issue and weβll discuss it together!
|
|
157
|
+
|
|
158
|
+
---
|
|
159
|
+
|
|
160
|
+
### β‘ Getting Started Is Simple
|
|
161
|
+
|
|
162
|
+
1. Fork the repo π΄
|
|
163
|
+
2. Create a new branch π
|
|
164
|
+
3. Make your changes β
|
|
165
|
+
4. Submit a pull request with a clear description π¬
|
|
166
|
+
|
|
167
|
+
We welcome both small and large contributions β whether it's fixing typos, creating a new ensemble strategy, or building an entire UI module. **Every contribution counts.**
|
|
168
|
+
|
|
169
|
+
> Letβs build the future of open, local-first AutoML together. π»π§ͺ
|
|
170
|
+
Let me know if you also want a CONTRIBUTING.md with formatting guidelines, code style, and environment setup instructions. This will boost the credibility of your repo and help new contributors onboard faster.
|
|
171
|
+
---
|
|
172
|
+
|
|
173
|
+
## π€ Contact
|
|
174
|
+
### Author: Manas Ranjan Jena
|
|
175
|
+
|
|
176
|
+
### Email: mranjanjena253@gmail.com
|
|
177
|
+
|
|
178
|
+
### GitHub: @ManasRanjanJena253
|
|
179
|
+
|
|
180
|
+
### LinkedIn: manasranjanjena253
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
## π‘ License
|
|
185
|
+
|
|
186
|
+
### MIT License β You are free to use, modify, and distribute SwiftPredict with proper attribution.
|
|
187
|
+
|
|
188
|
+
---
|
|
189
|
+
|
|
190
|
+
## π‘ Summary
|
|
191
|
+
* #### SwiftPredict is the ideal AutoML tool if you:
|
|
192
|
+
* #### Want full control over your data and pipeline
|
|
193
|
+
* #### Need a fast, local, and visual way to iterate on models
|
|
194
|
+
* #### Prefer Python-native workflows without any vendor lock-in
|
|
195
|
+
* #### Care about privacy, reproducibility, and open-source flexibility
|
|
196
|
+
|
|
197
|
+
* #### No cloud, no noise. Just pure ML automation at your fingertips.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
from .services.automl_trainer import AutoML
|
|
2
|
+
from .services.preprocessing import handle_null_values, handle_imbalance, handle_cat_columns, detect_task, get_dtype_columns, text_preprocessor
|
|
3
|
+
from .client.swift_predict import SwiftPredict
|
|
4
|
+
|
|
5
|
+
__all__ = [
|
|
6
|
+
"AutoML",
|
|
7
|
+
"handle_null_values",
|
|
8
|
+
"handle_imbalance",
|
|
9
|
+
"handle_cat_columns",
|
|
10
|
+
"detect_task",
|
|
11
|
+
"get_dtype_columns",
|
|
12
|
+
"text_preprocessor",
|
|
13
|
+
"SwiftPredict"
|
|
14
|
+
]
|