<?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: Tanmay P. Tawade</title>
    <description>The latest articles on DEV Community by Tanmay P. Tawade (@tanmayt134).</description>
    <link>https://dev.to/tanmayt134</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%2F3713868%2Fe7997951-e8ff-49a4-8a42-38675e0f1ac2.jpg</url>
      <title>DEV Community: Tanmay P. Tawade</title>
      <link>https://dev.to/tanmayt134</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tanmayt134"/>
    <language>en</language>
    <item>
      <title>🚀 5 Mistakes I Made in My First CNN Project (That Ruined My Results)</title>
      <dc:creator>Tanmay P. Tawade</dc:creator>
      <pubDate>Mon, 23 Mar 2026 13:48:43 +0000</pubDate>
      <link>https://dev.to/tanmayt134/5-mistakes-i-made-in-my-first-cnn-project-that-ruined-my-results-4ial</link>
      <guid>https://dev.to/tanmayt134/5-mistakes-i-made-in-my-first-cnn-project-that-ruined-my-results-4ial</guid>
      <description>&lt;h2&gt;
  
  
  😅 I Thought My Model Was Working… Until It Wasn’t
&lt;/h2&gt;

&lt;p&gt;When I built my first CNN model for brain tumor classification using MRI images, I felt confident.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The code was running&lt;/li&gt;
&lt;li&gt;Accuracy looked good&lt;/li&gt;
&lt;li&gt;Predictions were coming&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The model classified images into:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Glioma&lt;/li&gt;
&lt;li&gt;Meningioma&lt;/li&gt;
&lt;li&gt;Pituitary&lt;/li&gt;
&lt;li&gt;No Tumor&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Everything seemed fine… until I looked closer.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;👉 The model wasn’t learning what I thought it was.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here are the 5 mistakes that taught me more than any tutorial.&lt;/p&gt;




&lt;h2&gt;
  
  
  ❌ Mistake 1: Ignoring Class Distribution
&lt;/h2&gt;

&lt;p&gt;I didn’t properly check:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How many images per class?&lt;/li&gt;
&lt;li&gt;Whether all 4 classes were balanced?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;👉 Result:&lt;/strong&gt;&lt;br&gt;
The model became biased toward dominant classes.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;It looked accurate—but struggled on minority classes.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;🖼️ Class Imbalance Problem&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1l0a13a8kfhzwx5qm27d.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1l0a13a8kfhzwx5qm27d.png" alt="Class Imbalance Problem" width="800" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;👉 Lesson:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In multi-class problems, imbalance is even more dangerous than binary cases.&lt;/p&gt;




&lt;h2&gt;
  
  
  ❌ Mistake 2: Increasing Model Complexity Without Reason
&lt;/h2&gt;

&lt;p&gt;I assumed:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“More layers = better classification across all 4 classes”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;So I kept adding layers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;👉 Result:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Training accuracy increased&lt;/li&gt;
&lt;li&gt;Validation performance dropped&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  📉 Overfitting in Multi-Class Model
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3793oiq28jqke7q9vt8d.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3793oiq28jqke7q9vt8d.png" alt="Overfitting in model" width="640" height="476"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;👉 Lesson:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A complex model doesn’t guarantee better class separation.&lt;/p&gt;




&lt;h2&gt;
  
  
  ❌ Mistake 3: Trusting Overall Accuracy
&lt;/h2&gt;

&lt;p&gt;My model showed decent accuracy.&lt;/p&gt;

&lt;p&gt;I thought:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“It’s working well.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;But I didn’t check:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Class-wise performance&lt;/li&gt;
&lt;li&gt;Confusion between similar tumor types&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;👉 Result:&lt;/strong&gt;&lt;br&gt;
The model confused:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Glioma vs Meningioma&lt;/li&gt;
&lt;li&gt;Pituitary vs others&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;👉 Lesson:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;In multi-class problems, overall accuracy hides real problems.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  ❌ Mistake 4: Copying Hyperparameters Blindly
&lt;/h2&gt;

&lt;p&gt;I copied:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Learning rate&lt;/li&gt;
&lt;li&gt;Epochs&lt;/li&gt;
&lt;li&gt;Batch size&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Without understanding their effect.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;👉 Result:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Some classes learned faster&lt;/li&gt;
&lt;li&gt;Others were poorly classified&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;👉 Lesson:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Hyperparameters affect each class differently in multi-class models.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  ❌ Mistake 5: Not Visualizing MRI Data Early
&lt;/h2&gt;

&lt;p&gt;I didn’t spend enough time looking at:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Differences between tumor types&lt;/li&gt;
&lt;li&gt;Visual patterns in MRI scans&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧠 What I Should Have Observed
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsrcuia8rxwlvhstavkhv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsrcuia8rxwlvhstavkhv.png" alt="Original Dataset vs Improved Dataset" width="800" height="328"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flypxxz4xc1bth7zaxq29.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flypxxz4xc1bth7zaxq29.png" alt="Tumor Locations" width="800" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;👉 Lesson:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Some classes look visually similar—your model struggles for the same reason.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  🧠 What Changed After These Mistakes
&lt;/h2&gt;

&lt;p&gt;After fixing these:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I started checking class-wise performance&lt;/li&gt;
&lt;li&gt;I simplified the model&lt;/li&gt;
&lt;li&gt;I focused more on data understanding&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;👉 Biggest realization:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Multi-class classification is not just “more classes”—it’s more complexity.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  💬 Final Thought
&lt;/h2&gt;

&lt;p&gt;If you're working on a CNN for multi-class classification, don’t rely on accuracy alone.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;👉 Ask:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Which class is failing?&lt;/li&gt;
&lt;li&gt;Why is it failing?&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔗 Part of My CNN Learning Series
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🧠 My first experience → (&lt;a href="https://dev.to/tanmayt134/what-my-first-cnn-project-taught-me-3om7"&gt;https://dev.to/tanmayt134/what-my-first-cnn-project-taught-me-3om7&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;⚠️ Mistakes → (this post)&lt;/li&gt;
&lt;li&gt;⚙️ How I built the model → (coming next)&lt;/li&gt;
&lt;li&gt;🔍 Explainability (Grad-CAM) → (coming)&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🙌 Let’s Learn Together
&lt;/h2&gt;

&lt;p&gt;If you’ve worked on a multi-class CNN:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;👉 Which classes were hardest for your model to distinguish?&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  👨🏻‍💻 Author
&lt;/h2&gt;

&lt;p&gt;Tanmay Tawade&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>deeplearning</category>
      <category>cnn</category>
      <category>ai</category>
    </item>
    <item>
      <title>🚀 I Built My First CNN for Brain Tumor Detection - Here’s What Actually Confused Me</title>
      <dc:creator>Tanmay P. Tawade</dc:creator>
      <pubDate>Fri, 16 Jan 2026 11:25:22 +0000</pubDate>
      <link>https://dev.to/tanmayt134/what-my-first-cnn-project-taught-me-3om7</link>
      <guid>https://dev.to/tanmayt134/what-my-first-cnn-project-taught-me-3om7</guid>
      <description>&lt;h2&gt;
  
  
  🧠 From Theory to Reality
&lt;/h2&gt;

&lt;p&gt;As a final-year E&amp;amp;TC engineering student, I recently built my first &lt;strong&gt;Convolutional Neural Network (CNN)&lt;/strong&gt; project for &lt;strong&gt;brain tumor detection using MRI images.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is not a tutorial.&lt;/p&gt;

&lt;p&gt;It’s a breakdown of:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;what I thought I understood&lt;/li&gt;
&lt;li&gt;what actually confused me&lt;/li&gt;
&lt;li&gt;what changed after I implemented everything&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🤔 Why I Chose This Project
&lt;/h2&gt;

&lt;p&gt;I wanted something that was:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Academically meaningful&lt;/li&gt;
&lt;li&gt;Related to deep learning&lt;/li&gt;
&lt;li&gt;Practical enough to connect theory with real-world use&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Medical image analysis stood out because it’s not just technical - it has &lt;strong&gt;real-world impact&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  📊 Understanding the Dataset (Where I Initially Went Wrong)
&lt;/h2&gt;

&lt;p&gt;Before writing any code, I should have asked:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What exactly do the labels represent?&lt;/li&gt;
&lt;li&gt;Are the images already preprocessed?&lt;/li&gt;
&lt;li&gt;Is the dataset balanced?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I didn’t take these seriously at first - and it caused confusion later.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;👉 Lesson:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Understanding your dataset is more important than building the model.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  🖼️ Sample MRI Data
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foi9sxqq4en2770qmaxbj.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foi9sxqq4en2770qmaxbj.jpeg" alt="Dataset Image" width="238" height="211"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Even a quick visual inspection of data would have helped me understand patterns early.&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚙️ CNNs: What Changed After Implementation
&lt;/h2&gt;

&lt;p&gt;I had studied CNNs before, but coding them changed everything.&lt;/p&gt;

&lt;p&gt;Here’s what became clear:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Convolution layers are feature extractors, not magic&lt;/li&gt;
&lt;li&gt;Pooling reduces dimensions and overfitting, not just “data size”&lt;/li&gt;
&lt;li&gt;More layers ≠ better performance&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;👉 Biggest realization:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Small architectural changes can significantly impact results.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  🧩 A Simple CNN Structure
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyp30nn0yvn9h70b0wzkg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyp30nn0yvn9h70b0wzkg.png" alt="CNN Architecture" width="800" height="388"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ft8ro2kysoqd0azl1apy7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ft8ro2kysoqd0azl1apy7.png" alt="Block diagram of CNN" width="432" height="117"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This helped me finally visualize how data flows through the network.&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚠️ Challenges I Faced
&lt;/h2&gt;

&lt;p&gt;This is where things got real.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Overfitting on training data&lt;/li&gt;
&lt;li&gt;Confusing validation accuracy with real performance&lt;/li&gt;
&lt;li&gt;Randomly choosing hyperparameters&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;At one point, I genuinely thought:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“If accuracy is high, the model must be good.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That assumption was wrong.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔍 Why Explainability Became Important
&lt;/h2&gt;

&lt;p&gt;In medical applications, accuracy alone isn’t enough.&lt;/p&gt;

&lt;p&gt;I started exploring model explainability to answer:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Why is the model predicting tumor?&lt;/li&gt;
&lt;li&gt;Which part of the image matters most?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Even simple visualization methods helped me trust the model more.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧠 Model Interpretation Example
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0ktrmfloykokizfiva61.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0ktrmfloykokizfiva61.png" alt="Grad-CAM Output (No Tumor Image)" width="639" height="324"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frvkmwrvk8ex9367odcmt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frvkmwrvk8ex9367odcmt.png" alt="Grad-CAM Output (Tumor Image)" width="639" height="324"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Seeing highlighted regions made predictions more meaningful.&lt;/p&gt;




&lt;h2&gt;
  
  
  📈 What This Project Taught Me
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Machine learning is iterative, not linear&lt;/li&gt;
&lt;li&gt;Debugging requires patience and observation&lt;/li&gt;
&lt;li&gt;Reading results is as important as writing code&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;👉 Most important:&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Copying solutions is easy. Understanding them is not.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  🔧 What I Plan to Improve Next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Better evaluation techniques (beyond accuracy)&lt;/li&gt;
&lt;li&gt;Cleaner project structure&lt;/li&gt;
&lt;li&gt;Deeper understanding of explainable AI&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔗 Project Reference
&lt;/h2&gt;

&lt;p&gt;You can check the full implementation here:&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://github.com/TanmayT134/Explainable-Brain-Tumor-Detection.git" rel="noopener noreferrer"&gt;Github Demo&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CNN model implementation&lt;/li&gt;
&lt;li&gt;Data preprocessing&lt;/li&gt;
&lt;li&gt;Experimentation and results&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  💬 Final Thought
&lt;/h2&gt;

&lt;p&gt;I’m not an expert - just someone learning by building.&lt;/p&gt;

&lt;p&gt;If you’ve worked on a CNN project:&lt;br&gt;
👉 What confused you the most in the beginning?&lt;/p&gt;

&lt;p&gt;Let’s learn together.&lt;/p&gt;




&lt;h2&gt;
  
  
  👨🏻‍💻 Author
&lt;/h2&gt;

&lt;p&gt;Tanmay Tawade&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>deeplearning</category>
      <category>cnn</category>
      <category>learning</category>
    </item>
  </channel>
</rss>
