<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Actividad IDSA - Clustering by Ing. Layla Scheli</title>
      <link>https://padlet.com/laylascheli/yn59jex9ffyd4io3</link>
      <description>Hecho con encanto</description>
      <language>en-us</language>
      <pubDate>2023-11-22 13:10:02 UTC</pubDate>
      <lastBuildDate>2023-11-22 13:29:35 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Consigna</title>
         <author>laylascheli</author>
         <link>https://padlet.com/laylascheli/yn59jex9ffyd4io3/wish/2799379560</link>
         <description><![CDATA[<p>1.Investigar sobre diferentes Clustering además de los vistos y estudiados durante la clase. Ej. DBSCAN, k-Medoids, etc.</p><p>2.Documentar un breve resumen del análisis realizado, detallando usos y características de los algoritmos.</p><p>3.Debatir colaborativamente entre todo.</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-11-22 13:10:39 UTC</pubDate>
         <guid>https://padlet.com/laylascheli/yn59jex9ffyd4io3/wish/2799379560</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laylascheli/yn59jex9ffyd4io3/wish/2799391726</link>
         <description><![CDATA[<p>K-Medoids:</p><p>El término “<em>medoide</em>” se refiere a un objeto dentro de un clúster cuya diferencia promedio con respecto a los demás miembros del clúster es mínima. Es como el punto más central del grupo.En contraste, en el <em>clúster k-means</em>, el centro de un clúster se calcula como el promedio de todos los puntos de datos que lo componen.</p><p><br></p><p>El algoritmo es menos sensible al ruido y a los valores atípicos.</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-11-22 13:21:37 UTC</pubDate>
         <guid>https://padlet.com/laylascheli/yn59jex9ffyd4io3/wish/2799391726</guid>
      </item>
      <item>
         <title>DBSCAN</title>
         <author></author>
         <link>https://padlet.com/laylascheli/yn59jex9ffyd4io3/wish/2799398254</link>
         <description><![CDATA[<p>Es un algoritmo de aprendizaje no supervisado basado en densidad. Calcula gráficos de vecinos más cercanos para encontrar valores atípicos y grupos de formas arbitrarias.</p><p><br/></p><p><strong>Como funciona:</strong></p><p><br/></p><p>El algoritmo procede seleccionando arbitrariamente un punto en el conjunto de datos (hasta que se hayan visitado todos los puntos).</p><p>Si hay al menos puntos 'minPoint' dentro de un radio de 'ε' hasta el punto, entonces consideramos que todos estos puntos son parte del mismo grupo.</p><p>Luego, los grupos se expanden repitiendo recursivamente el cálculo de vecindad para cada punto vecino.</p><p><br/></p><p><strong>Diferencias con K-Means:</strong></p><p><br/></p><p>A diferencia de K-Means, este tipo de cllustering localiza regiones de alta densidad que están separadas una de la otra por regiones de baja densidad. Con densidad, nos referimos al número de puntos dentro de un radio especificado.</p><p><br/></p><p><strong>Ejemplo:</strong></p><p><br/></p><p>-La geolocalización de tuits después de una catástrofe natural o un ataque terrorista puede organizarse en clústeres para informar sobre las necesidades de rescate y evacuación en función del tamaño y la ubicación de los clústeres identificados.</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-11-22 13:27:18 UTC</pubDate>
         <guid>https://padlet.com/laylascheli/yn59jex9ffyd4io3/wish/2799398254</guid>
      </item>
      <item>
         <title>Affinity Propagation clustering algorithm</title>
         <author></author>
         <link>https://padlet.com/laylascheli/yn59jex9ffyd4io3/wish/2799400234</link>
         <description><![CDATA[<p>Each data point communicates with all of the other data points to let each other know how similar they are and that starts to reveal the clusters in the data. You don't have to tell this algorithm how many clusters to expect in the initialization parameters.</p><p><br/></p><p>As messages are sent between data points, sets of data called <em>exemplars</em> are found and they represent the clusters.</p><p>An exemplar is found after the data points have passed messages to each other and form a consensus on what data point best represents a cluster.</p><p><br/></p><p>When you aren't sure how many clusters to expect, like in a computer vision problem, this is a great algorithm to start with.</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-11-22 13:28:44 UTC</pubDate>
         <guid>https://padlet.com/laylascheli/yn59jex9ffyd4io3/wish/2799400234</guid>
      </item>
      <item>
         <title>Mean-Shift clustering algorithm</title>
         <author></author>
         <link>https://padlet.com/laylascheli/yn59jex9ffyd4io3/wish/2799401266</link>
         <description><![CDATA[<p>This is another algorithm that is particularly useful for handling images and computer vision processing. Mean-shift is similar to the BIRCH algorithm because it also finds clusters without an initial number of clusters being set.</p><p><br/></p><p>This is a hierarchical clustering algorithm, but the downside is that it doesn't scale well when working with large data sets.</p><p><br/></p><p>It works by iterating over all of the data points and shifts them towards the mode. The mode in this context is the high density area of data points in a region.</p><p><br/></p><p>That's why you might hear this algorithm referred to as the mode-seeking algorithm. It will go through this iterative process with each data point and move them closer to where other data points are until all data points have been assigned to a cluster.</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-11-22 13:29:35 UTC</pubDate>
         <guid>https://padlet.com/laylascheli/yn59jex9ffyd4io3/wish/2799401266</guid>
      </item>
      <item>
         <title>GMM (Gaussian Mixture Model)</title>
         <author></author>
         <link>https://padlet.com/laylascheli/yn59jex9ffyd4io3/wish/2799401643</link>
         <description><![CDATA[<p>El Modelo de Mezcla de Gaussianas (GMM) es un modelo probabilístico que asume que los datos están generados por una mezcla de varias distribuciones gaussianas. Cada componente gaussiano en la mezcla representa un clúster. GMM es una técnica de clustering suave, lo que significa que asigna una probabilidad a cada punto de pertenecer a cada clúster en lugar de asignarlo a un clúster específico. Esto lo hace útil cuando los puntos pueden pertenecer a múltiples clústeres.</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-11-22 13:29:54 UTC</pubDate>
         <guid>https://padlet.com/laylascheli/yn59jex9ffyd4io3/wish/2799401643</guid>
      </item>
      <item>
         <title>OPTICS algorithm</title>
         <author></author>
         <link>https://padlet.com/laylascheli/yn59jex9ffyd4io3/wish/2799401674</link>
         <description><![CDATA[<p>OPTICS stands for Ordering Points to Identify the Clustering Structure. It's a density-based algorithm similar to DBSCAN, but it's better because it can find meaningful clusters in data that varies in density. It does this by ordering the data points so that the closest points are neighbors in the ordering. </p><p><br/></p><p>This makes it easier to detect different density clusters. The OPTICS algorithm only processes each data point once, similar to DBSCAN (although it runs slower than DBSCAN). There's also a special distance stored for each data point that indicates a point belongs to a specific cluster.</p>]]></description>
         <enclosure url="" />
         <pubDate>2023-11-22 13:29:56 UTC</pubDate>
         <guid>https://padlet.com/laylascheli/yn59jex9ffyd4io3/wish/2799401674</guid>
      </item>
   </channel>
</rss>
