├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Procfile ├── README.md ├── app ├── __init__.py ├── main.py └── sidebars │ ├── __init__.py │ ├── anomaly_detection_sidebars.py │ ├── classification_sidebars.py │ └── clustering_sidebars.py ├── data ├── ad │ ├── glass.csv │ ├── heart_disease.csv │ ├── kddcup99.csv │ └── mnist.csv └── classification │ ├── diabetes.csv │ ├── iris.csv │ └── pendigits.csv ├── requirements.txt ├── resources └── MLgenerator.gif ├── setup.sh └── templates ├── Anomaly Detection ├── LOF │ └── code-template.py.jinja ├── iForest │ └── code-template.py.jinja └── kNN │ └── code-template.py.jinja ├── Classification ├── Decision Trees │ └── code-template.py.jinja ├── Logistic Regression │ └── code-template.py.jinja ├── Random Forest │ └── code-template.py.jinja ├── SVM │ └── code-template.py.jinja └── kNN │ └── code-template.py.jinja └── Clustering ├── DBSCAN └── code-template.py.jinja ├── K-Means └── code-template.py.jinja └── OPTICS └── code-template.py.jinja /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: sh setup.sh && streamlit run app/main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/app/main.py -------------------------------------------------------------------------------- /app/sidebars/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/app/sidebars/__init__.py -------------------------------------------------------------------------------- /app/sidebars/anomaly_detection_sidebars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/app/sidebars/anomaly_detection_sidebars.py -------------------------------------------------------------------------------- /app/sidebars/classification_sidebars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/app/sidebars/classification_sidebars.py -------------------------------------------------------------------------------- /app/sidebars/clustering_sidebars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/app/sidebars/clustering_sidebars.py -------------------------------------------------------------------------------- /data/ad/glass.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/data/ad/glass.csv -------------------------------------------------------------------------------- /data/ad/heart_disease.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/data/ad/heart_disease.csv -------------------------------------------------------------------------------- /data/ad/kddcup99.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/data/ad/kddcup99.csv -------------------------------------------------------------------------------- /data/ad/mnist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/data/ad/mnist.csv -------------------------------------------------------------------------------- /data/classification/diabetes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/data/classification/diabetes.csv -------------------------------------------------------------------------------- /data/classification/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/data/classification/iris.csv -------------------------------------------------------------------------------- /data/classification/pendigits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/data/classification/pendigits.csv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/MLgenerator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/resources/MLgenerator.gif -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/setup.sh -------------------------------------------------------------------------------- /templates/Anomaly Detection/LOF/code-template.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/templates/Anomaly Detection/LOF/code-template.py.jinja -------------------------------------------------------------------------------- /templates/Anomaly Detection/iForest/code-template.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/templates/Anomaly Detection/iForest/code-template.py.jinja -------------------------------------------------------------------------------- /templates/Anomaly Detection/kNN/code-template.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/templates/Anomaly Detection/kNN/code-template.py.jinja -------------------------------------------------------------------------------- /templates/Classification/Decision Trees/code-template.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/templates/Classification/Decision Trees/code-template.py.jinja -------------------------------------------------------------------------------- /templates/Classification/Logistic Regression/code-template.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/templates/Classification/Logistic Regression/code-template.py.jinja -------------------------------------------------------------------------------- /templates/Classification/Random Forest/code-template.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/templates/Classification/Random Forest/code-template.py.jinja -------------------------------------------------------------------------------- /templates/Classification/SVM/code-template.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/templates/Classification/SVM/code-template.py.jinja -------------------------------------------------------------------------------- /templates/Classification/kNN/code-template.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/templates/Classification/kNN/code-template.py.jinja -------------------------------------------------------------------------------- /templates/Clustering/DBSCAN/code-template.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/templates/Clustering/DBSCAN/code-template.py.jinja -------------------------------------------------------------------------------- /templates/Clustering/K-Means/code-template.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/templates/Clustering/K-Means/code-template.py.jinja -------------------------------------------------------------------------------- /templates/Clustering/OPTICS/code-template.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgeshsamariya/MLgenerator/HEAD/templates/Clustering/OPTICS/code-template.py.jinja --------------------------------------------------------------------------------