An open API service indexing awesome lists of open source software.

https://github.com/stevemats/pyhodophile

Interactive Py web app to explore different datasets and classifiers easily.
https://github.com/stevemats/pyhodophile

python streamlit streamlit-webapp

Last synced: about 1 month ago
JSON representation

Interactive Py web app to explore different datasets and classifiers easily.

Awesome Lists containing this project

README

          

## Pyhodophile:
[Pyhodophile](https://github.com/stevemats/Pyhodophile) is a web based demo py app utilizing streamlit to help you explore different datasets and classifier all in one place.

## View Demo:
https://user-images.githubusercontent.com/30528167/126907271-2ade48ff-5e80-4ab0-ba5a-c32898322600.mp4

## Definations:
**KNN**(K-Nearest Neighbors) as seen in demo above under classifiers, is a simple algorithm used in Machine Learning for regression and classification problem. It stores all available cases and classifies new cases based on a similarity measure

**Random Forest** also seen in the demo, is a machine learning technique that’s used to solve regression and classification problems. It utilizes ensemble learning, which is a technique that combines many classifiers to provide solutions to complex problems.

Finally we have **SVM**(Support Vector machine), which is a linear model for classification and regression problems. It can solve linear and non-linear problems and work well for many practical problems. The idea of SVM is simple: The algorithm creates a line or a hyperplane which separates the data into classes.

## Usage
```
streamlit run main.py
```