Gourav18 commited on
Commit
b7e967a
·
verified ·
1 Parent(s): 38939c4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -3
README.md CHANGED
@@ -1,3 +1,29 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # AutoML Application
3
+
4
+ An automated machine learning application built with Streamlit that helps users to:
5
+ - Load and preprocess data
6
+ - Train multiple ML models (Logistic Regression, SVM, Random Forest)
7
+ - Automatically select the best model
8
+ - Visualize model performance
9
+ - Make predictions with the trained model
10
+
11
+ ## Features
12
+
13
+ - **Data Upload & Analysis**: Upload CSV or Excel files, view statistics, and visualize correlations
14
+ - **Automated Data Preprocessing**: Handle missing values and categorical encoding
15
+ - **Model Training**: Train multiple models with hyperparameter tuning
16
+ - **Model Visualization**: Compare model performance with various metrics
17
+ - **Prediction**: Make predictions using the trained model
18
+
19
+ ## Setup
20
+
21
+ 1. Clone this repository
22
+ 2. Install the requirements:
23
+ ```
24
+ pip install -r requirements.txt
25
+ ```
26
+ 3. Run the application:
27
+ ```
28
+ streamlit run main.py
29
+ ```