<?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: remontsuri</title>
    <description>The latest articles on Forem by remontsuri (@remontsuri).</description>
    <link>https://forem.com/remontsuri</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%2F3656202%2F3e7dd36a-6bb8-4d2a-8d82-0a0459fb998f.png</url>
      <title>Forem: remontsuri</title>
      <link>https://forem.com/remontsuri</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/remontsuri"/>
    <language>en</language>
    <item>
      <title>Building an ML-Powered Battery Testing Framework for Electric Vehicles</title>
      <dc:creator>remontsuri</dc:creator>
      <pubDate>Mon, 19 Jan 2026 22:47:32 +0000</pubDate>
      <link>https://forem.com/remontsuri/building-an-ml-powered-battery-testing-framework-for-electric-vehicles-7ed</link>
      <guid>https://forem.com/remontsuri/building-an-ml-powered-battery-testing-framework-for-electric-vehicles-7ed</guid>
      <description>&lt;h1&gt;
  
  
  🔋 Building an ML-Powered Battery Testing Framework for Electric Vehicles
&lt;/h1&gt;

&lt;p&gt;Battery failures cost the EV industry &lt;strong&gt;$5 billion annually&lt;/strong&gt; in warranty claims, recalls, and safety incidents. A single thermal runaway event can destroy an entire vehicle and endanger lives.&lt;/p&gt;

&lt;p&gt;The problem? &lt;strong&gt;Millions of telemetry data points&lt;/strong&gt; (voltage, temperature, State of Charge) go unmonitored until it's too late. Manual QA can't scale.&lt;/p&gt;

&lt;p&gt;I built &lt;strong&gt;EV-QA-Framework&lt;/strong&gt; — an open-source Python testing framework with AI-powered anomaly detection for Battery Management Systems (BMS).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/remontsuri/EV-QA-Framework" rel="noopener noreferrer"&gt;https://github.com/remontsuri/EV-QA-Framework&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🛠 Why I built this
&lt;/h2&gt;

&lt;p&gt;Mainstream testing tools are great for web apps, but they lack native support for hardware-specific edge cases like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Voltage Drop Anomaly:&lt;/strong&gt; Detecting subtle dips that indicate cell degradation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rapid Discharge Spikes:&lt;/strong&gt; Identifying patterns before they lead to short circuits.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;State-of-Charge (SoC) Drift:&lt;/strong&gt; Ensuring the reported battery percentage is actually accurate.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🚀 Key Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;64+ Automated Tests:&lt;/strong&gt; Covers voltage, current, temperature, and charging cycles.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ML Anomaly Detection:&lt;/strong&gt; Uses scikit-learn's &lt;code&gt;IsolationForest&lt;/code&gt; to spot outliers in telemetry data that rule-based systems miss.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;High Performance:&lt;/strong&gt; Built with Python 3.12, Pydantic (v2) for ultra-fast validation, and Pytest.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Interactive Reports:&lt;/strong&gt; Generates Jupyter Notebook visualizations for engineers to "see" the failure.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  📊 Quick Demo
&lt;/h2&gt;

&lt;p&gt;Here is how it looks in action (Full demo in the repo):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;ev_qa_framework.ml.anomaly_detector&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;BatteryAnomalyDetector&lt;/span&gt;

&lt;span class="c1"&gt;# Load telemetry data
&lt;/span&gt;&lt;span class="n"&gt;detector&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nc"&gt;BatteryAnomalyDetector&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="n"&gt;anomalies&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;detector&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;detect_anomalies&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;telemetry_df&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="c1"&gt;# Visualize findings
&lt;/span&gt;&lt;span class="n"&gt;detector&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;plot_results&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;telemetry_df&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;anomalies&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  🌍 Open Source &amp;amp; Community
&lt;/h2&gt;

&lt;p&gt;This project is open-source because EV safety should be accessible. Whether you are a QA engineer at Tesla or a hobbyist building a DIY e-bike, I hope this helps you build safer products.&lt;/p&gt;

&lt;p&gt;I'm currently looking for new opportunities in the EV/Green-Tech industry as a QA or ML Engineer. If your team is hiring, let's connect!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Check it out here:&lt;/strong&gt; &lt;a href="https://github.com/remontsuri/EV-QA-Framework" rel="noopener noreferrer"&gt;https://github.com/remontsuri/EV-QA-Framework&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  python #machinelearning #testing #ev #opensource
&lt;/h1&gt;

</description>
      <category>machinelearning</category>
      <category>python</category>
      <category>showdev</category>
      <category>testing</category>
    </item>
    <item>
      <title>Building PsychoAnalyze AI: An AI-Powered Interview Analysis Tool for Therapists</title>
      <dc:creator>remontsuri</dc:creator>
      <pubDate>Wed, 10 Dec 2025 21:10:54 +0000</pubDate>
      <link>https://forem.com/remontsuri/building-psychoanalyze-ai-an-ai-powered-interview-analysis-tool-for-therapists-3n8d</link>
      <guid>https://forem.com/remontsuri/building-psychoanalyze-ai-an-ai-powered-interview-analysis-tool-for-therapists-3n8d</guid>
      <description>&lt;p&gt;I built PsychoAnalyze AI, an open-source tool that combines my background in psychology with full-stack development to help therapists and researchers streamline their interview analysis workflow.&lt;/p&gt;

&lt;h2&gt;
  
  
  Problem
&lt;/h2&gt;

&lt;p&gt;Therapists and researchers spend significant time analyzing psychological interviews manually. The process is time-consuming and requires expertise in identifying patterns related to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Defense mechanisms&lt;/li&gt;
&lt;li&gt;Attachment styles&lt;/li&gt;
&lt;li&gt;Emotional responses&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Solution
&lt;/h2&gt;

&lt;p&gt;PsychoAnalyze AI leverages Google Gemini API to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Detect psychological patterns automatically&lt;/li&gt;
&lt;li&gt;Identify attachment styles from interview transcripts&lt;/li&gt;
&lt;li&gt;Recognize emotions and emotional patterns&lt;/li&gt;
&lt;li&gt;Provide therapy-oriented recommendations&lt;/li&gt;
&lt;li&gt;Support 6 languages&lt;/li&gt;
&lt;li&gt;Export analysis to PDF/Excel&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;React + TypeScript&lt;/li&gt;
&lt;li&gt;Vite&lt;/li&gt;
&lt;li&gt;Tailwind CSS&lt;/li&gt;
&lt;li&gt;Google Gemini API&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try It Out
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Live demo: &lt;a href="https://psychoanalyze-ai.vercel.app" rel="noopener noreferrer"&gt;https://psychoanalyze-ai.vercel.app&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/remontsuri/psychoanalyze-ai" rel="noopener noreferrer"&gt;https://github.com/remontsuri/psychoanalyze-ai&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Looking for feedback from the dev community! Any suggestions for improving the tool or adding new features?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>psychology</category>
      <category>machinelearning</category>
      <category>react</category>
    </item>
  </channel>
</rss>
