<?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>Forem: Pranjali Sawant</title>
    <description>The latest articles on Forem by Pranjali Sawant (@pranjali28).</description>
    <link>https://forem.com/pranjali28</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%2F3258256%2Fda59dd9a-0b7f-472d-9bce-1f7286e06bc7.jpg</url>
      <title>Forem: Pranjali Sawant</title>
      <link>https://forem.com/pranjali28</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/pranjali28"/>
    <language>en</language>
    <item>
      <title>Machine learning and AI: the new trend</title>
      <dc:creator>Pranjali Sawant</dc:creator>
      <pubDate>Wed, 11 Jun 2025 17:37:49 +0000</pubDate>
      <link>https://forem.com/pranjali28/machine-learning-and-ai-the-new-trend-mda</link>
      <guid>https://forem.com/pranjali28/machine-learning-and-ai-the-new-trend-mda</guid>
      <description>&lt;h1&gt;
  
  
  🧠 Catching Up with AI: What I Learned from My First ML &amp;amp; DL Cohort as a Student
&lt;/h1&gt;

&lt;p&gt;Unless you’ve been living completely offline, you’ve probably seen how &lt;strong&gt;AI and Machine Learning&lt;/strong&gt; are reshaping the future. From ChatGPT to self-driving cars, the hype is real — and as a student, I felt the urge to &lt;strong&gt;catch up&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;That’s when I joined a &lt;strong&gt;student-friendly Machine Learning &amp;amp; Deep Learning cohort&lt;/strong&gt;, and it became one of the best learning experiences of my tech journey so far.&lt;/p&gt;




&lt;h2&gt;
  
  
  🚀 Why I Joined the ML/DL Cohort
&lt;/h2&gt;

&lt;p&gt;I’ve always been more focused on frontend development — HTML, CSS, JavaScript, React — but I didn’t want to ignore the growing role of AI. So when I saw a chance to &lt;strong&gt;explore Machine Learning&lt;/strong&gt;, I grabbed it.&lt;/p&gt;

&lt;p&gt;The cohort was designed for beginners: structured lessons, hands-on exercises, and clear explanations. No math-heavy fear, just curiosity and code.&lt;/p&gt;




&lt;h2&gt;
  
  
  📚 What I Learned
&lt;/h2&gt;

&lt;p&gt;Here’s a breakdown of the concepts and topics we explored:&lt;/p&gt;

&lt;h3&gt;
  
  
  🔹 Machine Learning Basics
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;ML is about training a &lt;strong&gt;model&lt;/strong&gt; using &lt;strong&gt;data&lt;/strong&gt; to make predictions or generate output.&lt;/li&gt;
&lt;li&gt;There are 3 main types of ML:

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Supervised Learning&lt;/strong&gt; (with labeled data)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Unsupervised Learning&lt;/strong&gt; (without labels)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Reinforcement Learning&lt;/strong&gt; (with rewards/penalties)&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;h3&gt;
  
  
  🔹 Core Concepts in Supervised Learning
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Features &amp;amp; Labels&lt;/strong&gt;: Features are input data; labels are the output we want to predict.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Model Training&lt;/strong&gt;: The model adjusts its parameters based on the difference between its predictions and the actual label (aka loss).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Evaluation&lt;/strong&gt;: After training, the model is tested using data it hasn’t seen before.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🔹 Regression &amp;amp; Classification
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Regression&lt;/strong&gt; predicts a numeric value (e.g., predicting rainfall).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Classification&lt;/strong&gt; predicts categories (e.g., spam or not spam).&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🔹 Gradient Descent &amp;amp; Loss
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;We use &lt;strong&gt;loss functions&lt;/strong&gt; (like MAE, MSE) to measure how wrong predictions are.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Gradient descent&lt;/strong&gt; is used to minimize this loss by updating weights and biases.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧠 What About Deep Learning?
&lt;/h2&gt;

&lt;p&gt;We also explored &lt;strong&gt;Deep Learning&lt;/strong&gt;, a powerful subset of ML inspired by the human brain.&lt;/p&gt;

&lt;h3&gt;
  
  
  🔸 Neural Networks
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Neural networks are built with &lt;strong&gt;layers of neurons&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Each neuron processes inputs with weights and biases, then passes it to the next layer.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Activation functions&lt;/strong&gt; decide whether a neuron should "fire" or not.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🔸 Types of Neural Networks
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Convolutional Neural Networks (CNNs)&lt;/strong&gt; – great for image classification.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LSTMs&lt;/strong&gt; – ideal for sequence data like speech or text.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🛠 Tools We Used
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Python&lt;/strong&gt; – the language we used for almost everything&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pandas &amp;amp; NumPy&lt;/strong&gt; – for handling and cleaning data&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Matplotlib &amp;amp; Seaborn&lt;/strong&gt; – for data visualization&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scikit-learn&lt;/strong&gt; – for training models like Linear Regression, Decision Trees&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Google Colab&lt;/strong&gt; – to run code in the cloud without setup&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  💡 My Takeaways as a Beginner
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Start small&lt;/strong&gt; – Learn the concepts, not just the syntax.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Practice more than you watch&lt;/strong&gt; – Run code, tweak parameters, see what changes.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Visualization helps&lt;/strong&gt; – Graphs and charts made everything more understandable.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Don't fear the math&lt;/strong&gt; – You can still learn the logic first and go deeper later.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ML can fit anywhere&lt;/strong&gt; – Even my digital journal app might use mood-based ML soon!&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  🌱 What’s Next?
&lt;/h2&gt;

&lt;p&gt;While my focus remains on frontend and UI/UX, I now see how ML can &lt;strong&gt;complement&lt;/strong&gt; my work. Whether it’s a recommendation engine, mood tracker, or smart health alert — I’ve opened the door to AI-powered features in my future projects.&lt;/p&gt;




&lt;h2&gt;
  
  
  🙌 Final Thoughts
&lt;/h2&gt;

&lt;p&gt;To anyone who’s scared to get started with ML or feels like it’s “too advanced” — don’t worry. I started with no confidence in this domain, and now I’m genuinely excited to keep learning.&lt;/p&gt;

&lt;p&gt;If you’ve just started or are curious about ML/DL, let’s connect! Drop a comment or DM me — always happy to chat with fellow learners!&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Thanks for reading! 🚀&lt;/em&gt;&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>python</category>
      <category>beginners</category>
      <category>datascience</category>
    </item>
    <item>
      <title>Beginner in Tech</title>
      <dc:creator>Pranjali Sawant</dc:creator>
      <pubDate>Wed, 11 Jun 2025 17:22:34 +0000</pubDate>
      <link>https://forem.com/pranjali28/beginner-in-tech-2cpc</link>
      <guid>https://forem.com/pranjali28/beginner-in-tech-2cpc</guid>
      <description>&lt;h1&gt;
  
  
  My Frontend Journey So Far: From Confused to Curious
&lt;/h1&gt;

&lt;p&gt;Like many students in tech, I started learning frontend with a mix of excitement and confusion. I’d heard about HTML, CSS, JavaScript—but had no idea how they all fit together.&lt;/p&gt;

&lt;p&gt;This post is a reflection on where I started, what I'm learning now, and how building small projects is helping me become more confident in frontend development.&lt;/p&gt;




&lt;h2&gt;
  
  
  🌱 Where I Started
&lt;/h2&gt;

&lt;p&gt;I began with basic HTML and CSS, trying out small layouts and forms. It was fun, but I quickly realized there was so much more to learn—especially when I reached JavaScript.&lt;/p&gt;

&lt;p&gt;At that stage, it felt overwhelming. DOM manipulation? APIs? React? I didn’t even know where to begin.&lt;/p&gt;




&lt;h2&gt;
  
  
  💡 How Things Started Clicking
&lt;/h2&gt;

&lt;p&gt;Things started making more sense when I worked on a college project using the &lt;strong&gt;MERN stack&lt;/strong&gt;. Even though I wasn’t the main coder, observing how things were structured gave me clarity.&lt;/p&gt;

&lt;p&gt;Eventually, I started learning &lt;strong&gt;React&lt;/strong&gt; on my own and began building personal projects — like a &lt;strong&gt;digital journal app&lt;/strong&gt; and a &lt;strong&gt;medical web app&lt;/strong&gt; to connect doctors and patients.&lt;/p&gt;




&lt;h2&gt;
  
  
  🛠️ Tools &amp;amp; Tech I'm Exploring
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;JavaScript (especially functions, arrays, DOM)&lt;/li&gt;
&lt;li&gt;React.js (components, props, hooks)&lt;/li&gt;
&lt;li&gt;MongoDB + Express&lt;/li&gt;
&lt;li&gt;Git and Postman&lt;/li&gt;
&lt;li&gt;UI/UX design and thinking principles&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  📚 What I’ve Learned So Far
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;You don’t need to feel “ready” to start building.&lt;/li&gt;
&lt;li&gt;Breaking projects into small parts makes them less overwhelming.&lt;/li&gt;
&lt;li&gt;It’s okay to get stuck — that’s where real learning happens.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔭 What's Next?
&lt;/h2&gt;

&lt;p&gt;I’ll be publishing more posts like this to share what I’m learning, mistakes I make, and how I fix them.&lt;br&gt;&lt;br&gt;
If you’re also learning frontend, let’s connect!&lt;/p&gt;

&lt;p&gt;💬 Drop your tips, experiences, or questions below — I’d love to chat with other learners like me!&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Thanks for reading! 😊&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>beginners</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
