<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Moyantri Koley</title>
    <description>The latest articles on DEV Community by Moyantri Koley (@moyantri).</description>
    <link>https://dev.to/moyantri</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F505968%2Ff70e3c76-bfa3-49b2-93d8-f0a9e5c852a2.jpeg</url>
      <title>DEV Community: Moyantri Koley</title>
      <link>https://dev.to/moyantri</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/moyantri"/>
    <language>en</language>
    <item>
      <title>My experiences in the hacker community</title>
      <dc:creator>Moyantri Koley</dc:creator>
      <pubDate>Thu, 01 Apr 2021 06:12:45 +0000</pubDate>
      <link>https://dev.to/moyantri/my-experiences-in-the-hacker-community-48gd</link>
      <guid>https://dev.to/moyantri/my-experiences-in-the-hacker-community-48gd</guid>
      <description>&lt;p&gt;Getting involved has been the most important thing I've done for my career. I want to say some reasons for that in this post.&lt;br&gt;
My Story&lt;br&gt;
I started to code in computer science from first year. My first community event was volunteering at a Tech-fest event(kolkata- MINI MAKERS FAIR) in my city. It was a great experience. Then, one month later I participated in different project competitions, poster competition, photography, and Lecture series. I started attending hackathons from 3rd year.&lt;br&gt;
This year's LHD: Share is my first hackathon, which I am really enjoying. Joining #Eddiehub is the best thing. Collaboration first, code second this line is powerful. I was always curious to solve challenges and make things done. Things I have done in this LHD were quite brainstorming and interesting. I have learned a lot from my first Local Hack Day. To be honest I wasn’t expected that I will learn these many new things in a week. I shocked myself that I’m doing these many things. It was an amazing local hack day event for me. I would like to thank MLH for hosting these amazing events and my favorite guild EddieHub and guild members. After attending MLH I have learnt team and collaborate in projects makes you a better person and that help you to become a better coder, as you always learn something new from every hackathons.&lt;/p&gt;

&lt;p&gt;The communities that I am a part of:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;DSC,UEMK&lt;/li&gt;
&lt;li&gt;OSA&lt;/li&gt;
&lt;li&gt;SPIE&lt;/li&gt;
&lt;li&gt;IETE.UEMK&lt;/li&gt;
&lt;li&gt;EDDIEHUB&lt;/li&gt;
&lt;li&gt;SPIE-OSA-UEMK student chapter- Secretary&lt;/li&gt;
&lt;li&gt;Facebook Developer Circles, Kolkata&lt;/li&gt;
&lt;li&gt;ACM&lt;/li&gt;
&lt;li&gt;Hackclub&lt;/li&gt;
&lt;li&gt;WomenTech Network-Global Volunteer.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;how can you start getting involved? &lt;br&gt;
Here are some tips,&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Answer Questions, #Discussion&lt;/li&gt;
&lt;li&gt;Twitter&lt;/li&gt;
&lt;li&gt;Blogging&lt;/li&gt;
&lt;li&gt;Developer Circles&lt;/li&gt;
&lt;li&gt;Chat Groups&lt;/li&gt;
&lt;li&gt;Contribute to open source&lt;/li&gt;
&lt;li&gt;Meetups&lt;/li&gt;
&lt;li&gt;Conferences&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Tech communities not only enable members to upscale their technology skills, but also provide them high visibility among IT recruiters – giving them a unique opportunity. Lastly, I love to be part of communities.&lt;/p&gt;

</description>
      <category>community</category>
      <category>hackathon</category>
    </item>
    <item>
      <title>UNSUPERVISED LEARNING</title>
      <dc:creator>Moyantri Koley</dc:creator>
      <pubDate>Sat, 05 Dec 2020 05:55:26 +0000</pubDate>
      <link>https://dev.to/moyantri/unsupervised-learning-511a</link>
      <guid>https://dev.to/moyantri/unsupervised-learning-511a</guid>
      <description>&lt;p&gt;Unsupervised Learning&lt;/p&gt;

&lt;p&gt;Unsupervised learning is where only the input data is present and no corresponding output variable is there. Unsupervised learning has a lot of potential ranging anywhere from fraud detection to stock trading.&lt;/p&gt;

&lt;p&gt;Unsupervised learning has two categories of algorithms:&lt;/p&gt;

&lt;p&gt;Clustering: A clustering problem is where you want to discover the inherent groupings in the data, such as grouping customers by purchasing behavior.&lt;/p&gt;

&lt;p&gt;Association: An association rule learning problem is where you want to discover rules that describe a large portion of your data.&lt;br&gt;
Association rules mining are used to identify new and interesting insights between different objects in a set, frequent pattern in transactional data or any sort of relational database.&lt;br&gt;
*&lt;strong&gt;&lt;em&gt;Anomality detection&lt;br&gt;
*&lt;/em&gt;&lt;/strong&gt;Neural Networks&lt;/p&gt;

&lt;p&gt;Clustering&lt;br&gt;
Clustering is similar to classification, but the basis is different. In clustering, you don't know what you are looking for, and you are trying to identify some segments or clusters in your data.&lt;br&gt;
Probabilistic Clustering – clustering your data points into clusters on a probabilistic scale.&lt;/p&gt;

&lt;p&gt;These variations on the same fundamental concept might look something like this in code:&lt;/p&gt;

&lt;h1&gt;
  
  
  Import the KMeans package from Scikit Learn
&lt;/h1&gt;

&lt;p&gt;from sklearn.cluster import KMeans&lt;/p&gt;

&lt;h1&gt;
  
  
  Grab the training data
&lt;/h1&gt;

&lt;p&gt;x = os.path(‘train’)&lt;/p&gt;

&lt;h1&gt;
  
  
  Set the desired number of clusters
&lt;/h1&gt;

&lt;p&gt;k = 5&lt;/p&gt;

&lt;h1&gt;
  
  
  Run the KMeans algorithm
&lt;/h1&gt;

&lt;p&gt;kmeans = KMeans(n_clusters=k).fit(x)&lt;/p&gt;

&lt;h1&gt;
  
  
  Show the resulting labels
&lt;/h1&gt;

&lt;p&gt;kmeans.labels_&lt;/p&gt;

&lt;p&gt;Any clustering algorithm will typically output all of your data points and the respective clusters to which they belong. It’s up to you to decide what they mean and exactly what the algorithm has found.&lt;/p&gt;

&lt;p&gt;Unsupervised learning is suitable for exploring unknown data. If you don’t know what you need to find, then this is the perfect method for you. &lt;br&gt;
It’s quite costly to annotate large datasets. As a result, experts rely on a few examples to work on the problem. &lt;/p&gt;

&lt;p&gt;Learn how to implement the following Machine learning Clustering models:&lt;/p&gt;

&lt;p&gt;1.K-mean Clustering&lt;br&gt;
2.Hierarchical Clustering&lt;br&gt;
The main problem is how to use the right estimator for our problems?&lt;br&gt;
You can use the &lt;a href="https://scikit-learn.org/stable/tutorial/machine_learning_map/index.html" rel="noopener noreferrer"&gt;https://scikit-learn.org/stable/tutorial/machine_learning_map/index.html&lt;/a&gt; map for your problem.&lt;/p&gt;

&lt;p&gt;Happy coding!&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>datascience</category>
      <category>unsupervisedlearning</category>
    </item>
    <item>
      <title>Data Augmentation :</title>
      <dc:creator>Moyantri Koley</dc:creator>
      <pubDate>Tue, 10 Nov 2020 14:36:47 +0000</pubDate>
      <link>https://dev.to/moyantri/data-augmentation-do8</link>
      <guid>https://dev.to/moyantri/data-augmentation-do8</guid>
      <description>&lt;p&gt;🎯 Data augmentation is a technique through which one can increase the size of the data for the training of the model without adding the new data. Techniques like padding, cropping, rotating, and flipping are the most common methods that are used over the images to increase the data size.&lt;/p&gt;

&lt;p&gt;Note: Both Keras Preprocessing Layers and tf.image can be used for data augmentation. For finer control , tf.image is preferred.&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>keras</category>
    </item>
  </channel>
</rss>
