Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sherwyn11 authored Dec 7, 2020
1 parent 94e52c5 commit d50e154
Showing 1 changed file with 106 additions and 2 deletions.
108 changes: 106 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,107 @@
# Skylearn.py
# Skylearn.py <img src="https://static.thenounproject.com/png/1870030-200.png" height="45px" width="45px"/>

## Overview:

<p>Creating a web-based data-mining application for preprocessing, visualization and classification of data. The web app is based on ‘WEKA’ (Waikato Environment for Knowledge Analysis) , a very popular data-mining tool used for data pre-processing, classification, regression, clustering, association rules, and visualization.
A user can upload a dataset (.csv or .json). The dataset is first put through preprocessing. He/she can view the dataset, the description of the dataset, attributes (columns) of the dataset, etc. The user can also choose to drop some columns. The user also has a choice to clean the dataset, fill ‘NA’ values.</p>
<p>The next feature is classification. For the web application, the ‘Linear Classification Family’, ‘Support Vector Classification Family’, ‘Tree Family’ and ‘Kernel Estimation Family’ of machine learning models were chosen.</p>
<p>The <b>Linear Classification Family</b> contains the following models:</p>
<ul>
<li>Logistic Regression (Binary Classification)</li>
<li>Naïve Bayes Classifier</li>
</ul>

<p>The <b>Support Vector Classification Family</b> consists of the following model:</p>
<ul>
<li>Linear Support Vector Classifier</li>
</ul>

<p>The <b>Tree Family</b> consists of the following models:</p>
<ul>
<li>Decision Tree Classifier</li>
<li>Random Forest Classifier (Ensemble)</li>
</ul>
<p>The <b>Kernel Estimation Family</b> consists of the following model:</p>
<ul><li>K - Nearest Neighbours Classifier</li></ul>
<p>The user can choose from any of the above classifications models provided. The user can
Choose the way in which testing is needed to be done. For example, if a test data is to be provided, the dataset is to be split into a certain size for training and testing or if cross- validation is to be performed. He/she can then choose to perform scaling using the Standard Scaler or encoding using the Label Encoder provided by the Sci-kit Learn Library. The user can then go ahead with classification. After classification is performed, the user can then review the performance of the classification model on the basis of various metrics provided such as the Classification Report, Confusion Matrix and Accuracy Score.</p>
<p>The next feature is visualization of data. Two basic plots are provided to the user. The first is the pair plot which provides the complete feature relation between each attribute of the dataset. The second one is the column-relation visualization where the user can choose the X and the Y from the columns (features) of the uploaded dataset to see a relation between them.</p>

## Requirements:
<p>The following are the requirements of the project:</p>
<ul>
<li>Flask</li>
<li>NumPy</li>
<li>Pandas</li>
<li>Sklearn</li>
<li>Matplotlib</li>
<li>Seaborn</li>
<li>JavaScript</li>
<li>Missingno</li>
<li>HTML</li>
<li>CSS</li>
<li>JQuery</li>
<li>Charts.JS</li>
</ul>

## Flow Diagram:

![](assets/image9.png)

## Outputs:

1. Home/Preprocess ( when no dataset is uploaded or on Clear )<br></br>
![](assets/image3.png)

2. Home/Preprocess : Upload ( On Uploading .csv/.json/.xls )<br></br>
![](assets/image5.png)

3. Home/Preprocess : Histogram of Selected Column ( Attribute PetalLengthCm )<br></br>
![](assets/image7.png)

4. Home/Preprocess : Delete ( Deleting Unwanted Attributes )<br></br>
![](assets/image15.png)

5. Home/Preprocess : View Data ( On any deletion/cleaning of data viewing newly cleant data )<br></br>
![](assets/image12.png)

6. Home/Preprocess : Clean Missing (Replace Missing Data with Mean/Median/Mode/FFill/Int/Float )<br></br>
![](assets/image8.png)

7. Home/Preprocess : Data Cleaning Done<br></br>
![](assets/image2.png)

8. Classify : Linear-SV Classifier Report ( K-Fold Cross Validation + Scaling )<br></br>
![](assets/image13.png)

9. Classify : Naive-Bayes Classifier Accuracy Report ( Train-Test Split )<br></br>
![](assets/image11.png)

10. Classify : Decision Classification Report (On Kyphosis Dataset )<br></br>
![](assets/image14.png)

11. Classify : Random Forest Classification Report (On Kyphosis Dataset )<br></br>
![](assets/image10.png)

12. Classify : Logistic Classification Confusion Matrix ( Uploading Test Dataset )<br></br>
![](assets/image16.png)

13. Visualization : Pair-Plot and Column-Relation Visualization<br></br>
![](assets/image6.png)

14. Visualize : Column-Relation Visualization ( Selecting X - Y Attributes to Visualize )<br></br>
![](assets/image4.png)

## Contributors

Made with 💙 &nbsp;by <a href="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/Darlene-Naz">Darlene Nazareth</a> and <a href="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/sherwyn11">Sherwyn D'souza</a></b>.

## License

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

[MIT License Link](https://github.com/sherwyn11/Skylearn.py/blob/master/LICENSE)

© 2020 Copyright


A simple flask application for data preprocessing, visualization and classification

0 comments on commit d50e154

Please sign in to comment.