Tag / classification

    Loading posts...
  • Naive Bayes Algorithm

    Naive Bayes – a Not so Naive Algorithm Naive Bayes algorithm is called Naive because the algorithm makes a very strong assumption about the data having features independent of each other while in reality, they may be dependent in some way. Assumes that the presence of one feature in a class is completely unrelated to…

  • KNN algorithm

    Dime con quien andas y te dire quien eres KNN algorithm Definicion El algoritmo KNN es un algoritmo simple que almacena todos los casos disponibles y clasifica nuevos casos según una medida de similitud (por ejemplo, funciones de distancia). En este caso vamos a aplicar k-NN classification, donde nuestro output es poder clasificar a un objeto…