gitextract_1u4gek_a/ ├── 01_MATLAB/ │ ├── Clustering.m │ ├── README.md │ ├── data/ │ │ ├── toy_clustering.mat │ │ └── toy_subspace_clustering.mat │ ├── lib/ │ │ ├── DBSCAN.m │ │ ├── Entropy_Weighting_Subspace_Kmeans.m │ │ ├── Gaussian_Mixture.m │ │ ├── ISODATA.m │ │ ├── Kmeans.m │ │ ├── Kmeanspp.m │ │ ├── LVQ.m │ │ ├── Mean_Shift.m │ │ └── Subspace_Kmeans.m │ └── tool/ │ ├── GenerateDataset.m │ └── PlotData.m ├── 02_Python/ │ ├── A_Star.py │ ├── Collaborative_Filtering.py │ ├── DBSCAN.py │ ├── Decision_Trees.py │ ├── Dimensionality_Reduction/ │ │ └── Dimensionality_Reduction.ipynb │ ├── Discrete_Cosine_Transform_(DCT)/ │ │ └── Discrete_Cosine_Transform.ipynb │ ├── FP_Growth.py │ ├── Genetic_Algorithm.py │ ├── K-Means_Implementation/ │ │ ├── Iris.csv │ │ ├── K-Means_Clustering_on_Iris_Dataset.ipynb │ │ ├── Links.txt │ │ └── README.md │ ├── K_Means.py │ ├── K_Nearest_Neighbours.py │ ├── K_Nearest_Neighbours_In_Parallel.py │ ├── Linear_Regression.py │ ├── Logistic_Regression.py │ ├── MSCRED/ │ │ ├── cnn_lstm/ │ │ │ ├── Untitled.ipynb │ │ │ ├── __init__.py │ │ │ ├── convlstm-update.py │ │ │ ├── convlstm.ipynb │ │ │ ├── convlstm.py │ │ │ ├── evaluation.ipynb │ │ │ ├── evalution.py │ │ │ ├── generation_signature_matrice.ipynb │ │ │ ├── generation_signature_matrice.py │ │ │ ├── report.txt │ │ │ └── utils.py │ │ └── data/ │ │ └── synthetic_data_with_anomaly-s-1.csv │ ├── Mean_Shift.py │ ├── Naive_Bayes.py │ ├── README.md │ ├── Random_Forest_Classifier.py │ ├── Support_Vector_Machine.py │ └── data/ │ ├── chronic_kidney_disease.csv │ ├── concentric_circles.csv │ ├── cron_jobs_schedule.csv │ ├── graph.in │ ├── ipl.csv │ ├── iris.csv │ ├── logistic_regression_data.txt │ ├── titanic-subset.csv │ └── titanic.csv ├── LICENSE └── README.md