sumanth-bmsce / Unsupervised_Extreme_Learning_Machine

Unsupervised Extreme Learning Machine(ELM) is a non-iterative algorithm used for feature extraction. This method is applied on the IRIS Dataset for non-linear feature extraction and clustering using k-means, Self Organizing Maps(Kohonen Network) and EM Algorithm
Apache License 2.0
18 stars 2 forks source link

"import AIC as ai;",What does it mean? #1

Closed HaoVictory closed 5 years ago

sumanth-bmsce commented 5 years ago

AIC is Akaike Information Criterion which is used to find the optimal number of clusters on the dataset like Bayesian Information Criterion (BIC)

HaoVictory commented 5 years ago

Sorry,but I  Could not find AIC module in python.Could you tell me how to import this module in ELM.py?And what is  the significance of this AIC module in this ELM.py?

sumanth-bmsce commented 5 years ago

For now you can ignore that importing AIC module and pass number of clusters explicitly. Eg : k.k_means(output_matrix, 4) if no of clusters you want is 4

HaoVictory commented 5 years ago

Thank you very much for your help! I will try it.