<?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: BrainWire</title>
    <description>The latest articles on DEV Community by BrainWire (@sentinelcipher).</description>
    <link>https://dev.to/sentinelcipher</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%2F3956595%2Ff8e375a3-9f80-4d90-86f2-f6ff10cb1d04.png</url>
      <title>DEV Community: BrainWire</title>
      <link>https://dev.to/sentinelcipher</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sentinelcipher"/>
    <language>en</language>
    <item>
      <title>I Built an Adaptive EDA Tool That Learns How You Explore Data</title>
      <dc:creator>BrainWire</dc:creator>
      <pubDate>Thu, 28 May 2026 12:45:47 +0000</pubDate>
      <link>https://dev.to/sentinelcipher/i-built-an-adaptive-eda-tool-that-learns-how-you-explore-data-21fd</link>
      <guid>https://dev.to/sentinelcipher/i-built-an-adaptive-eda-tool-that-learns-how-you-explore-data-21fd</guid>
      <description>&lt;p&gt;Most exploratory data analysis tools generate static reports.&lt;/p&gt;

&lt;p&gt;You upload a dataset, get dozens of charts, scroll for a few minutes, and leave with information overload instead of actual insight.&lt;/p&gt;

&lt;p&gt;After running into this problem repeatedly, I decided to build something different.&lt;/p&gt;

&lt;p&gt;So I open sourced XAdaptiveEDA.&lt;/p&gt;

&lt;p&gt;A Python + Streamlit tool that adapts its recommendations based on how you interact with your data.&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/AshayK003/XadaptiveEDA" rel="noopener noreferrer"&gt;https://github.com/AshayK003/XadaptiveEDA&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What Makes It Different?&lt;/p&gt;

&lt;p&gt;Traditional EDA tools treat every dataset and every user the same way.&lt;/p&gt;

&lt;p&gt;XAdaptiveEDA tries to behave more like an adaptive system instead of a one-time report generator.&lt;/p&gt;

&lt;p&gt;You upload a CSV, Excel, or JSON file, and the app:&lt;/p&gt;

&lt;p&gt;ranks analyses by relevance&lt;br&gt;
tracks your feedback with 👍 and 👎 interactions&lt;br&gt;
adapts future recommendations in real time&lt;br&gt;
avoids repetitive analyses&lt;br&gt;
prioritizes columns and patterns you explore frequently&lt;br&gt;
lets you chat with your dataset using natural language&lt;/p&gt;

&lt;p&gt;The goal was to make exploratory data analysis feel more interactive and personalized.&lt;/p&gt;

&lt;p&gt;Features&lt;/p&gt;

&lt;p&gt;Current capabilities include:&lt;/p&gt;

&lt;p&gt;Core Analysis&lt;br&gt;
Distribution analysis&lt;br&gt;
Correlation analysis&lt;br&gt;
Missing value detection&lt;br&gt;
Outlier analysis&lt;br&gt;
Categorical analysis&lt;br&gt;
Time series analysis&lt;br&gt;
Clustering&lt;br&gt;
Feature importance&lt;br&gt;
Adaptive Recommendation Engine&lt;/p&gt;

&lt;p&gt;The recommendation engine combines:&lt;/p&gt;

&lt;p&gt;data relevance&lt;br&gt;
user preferences&lt;br&gt;
novelty scoring&lt;br&gt;
diversity penalties&lt;br&gt;
temporal decay&lt;br&gt;
affinity tracking&lt;br&gt;
ε-greedy exploration&lt;/p&gt;

&lt;p&gt;Instead of dumping every possible chart, the tool tries to surface the analyses most likely to matter.&lt;/p&gt;

&lt;p&gt;Built-in AI Features&lt;/p&gt;

&lt;p&gt;I also added optional LLM integration for:&lt;/p&gt;

&lt;p&gt;chatting with datasets&lt;br&gt;
AI-generated analysis insights&lt;br&gt;
smart column naming&lt;br&gt;
natural language query classification&lt;/p&gt;

&lt;p&gt;Supported providers:&lt;/p&gt;

&lt;p&gt;Ollama (local-first)&lt;br&gt;
OpenRouter&lt;br&gt;
Groq&lt;br&gt;
Custom APIs&lt;/p&gt;

&lt;p&gt;One thing I cared about heavily was privacy.&lt;/p&gt;

&lt;p&gt;If you use Ollama locally, your data never leaves your machine.&lt;/p&gt;

&lt;p&gt;Tech Stack&lt;/p&gt;

&lt;p&gt;The project is intentionally lightweight.&lt;/p&gt;

&lt;p&gt;Built with:&lt;/p&gt;

&lt;p&gt;Streamlit&lt;br&gt;
Plotly&lt;br&gt;
pandas&lt;br&gt;
NumPy&lt;br&gt;
SQLite&lt;br&gt;
Ollama&lt;/p&gt;

&lt;p&gt;No massive infrastructure setup required.&lt;/p&gt;

&lt;p&gt;The entire system currently runs with just 6 dependencies.&lt;/p&gt;

&lt;p&gt;Engineering Details&lt;/p&gt;

&lt;p&gt;Some things I focused on while building this:&lt;/p&gt;

&lt;p&gt;explainable recommendation scoring&lt;br&gt;
session persistence with SQLite&lt;br&gt;
progressive sampling for large datasets&lt;br&gt;
GPU acceleration support through Ollama&lt;br&gt;
rate limiting for remote APIs&lt;br&gt;
modular architecture&lt;br&gt;
fully local workflows&lt;/p&gt;

&lt;p&gt;The project currently has:&lt;/p&gt;

&lt;p&gt;68 passing tests&lt;br&gt;
MIT license&lt;br&gt;
modular analysis pipeline&lt;br&gt;
explainable scoring system&lt;br&gt;
Why I Open Sourced It&lt;/p&gt;

&lt;p&gt;I strongly believe useful developer tools should be accessible and hackable.&lt;/p&gt;

&lt;p&gt;A lot of data tooling today feels either:&lt;/p&gt;

&lt;p&gt;too enterprise-focused&lt;br&gt;
too rigid&lt;br&gt;
too expensive&lt;br&gt;
or too opaque&lt;/p&gt;

&lt;p&gt;I wanted to build something developers could actually inspect, extend, and experiment with.&lt;/p&gt;

&lt;p&gt;What’s Next&lt;/p&gt;

&lt;p&gt;Planned improvements include:&lt;/p&gt;

&lt;p&gt;plugin system for custom analyses&lt;br&gt;
exportable reports&lt;br&gt;
dashboard mode&lt;br&gt;
multi-dataset comparison&lt;br&gt;
collaborative sessions&lt;/p&gt;

&lt;p&gt;I also want to improve the recommendation quality and overall UX significantly.&lt;/p&gt;

&lt;p&gt;Looking for Feedback&lt;/p&gt;

&lt;p&gt;I’d genuinely love feedback from:&lt;/p&gt;

&lt;p&gt;data scientists&lt;br&gt;
Python developers&lt;br&gt;
Streamlit builders&lt;br&gt;
open source contributors&lt;br&gt;
anyone working with exploratory analysis workflows&lt;/p&gt;

&lt;p&gt;Especially around:&lt;/p&gt;

&lt;p&gt;recommendation quality&lt;br&gt;
UI/UX&lt;br&gt;
adaptive scoring logic&lt;br&gt;
real-world usability&lt;/p&gt;

&lt;p&gt;GitHub:&lt;br&gt;
&lt;a href="https://github.com/AshayK003/XadaptiveEDA" rel="noopener noreferrer"&gt;https://github.com/AshayK003/XadaptiveEDA&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you find the project interesting, feel free to star the repo or contribute.&lt;br&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%2F1frqms4pl5o17swyd9ba.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%2F1frqms4pl5o17swyd9ba.png" alt=" " width="800" height="356"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>datascience</category>
      <category>opensource</category>
      <category>machinelearning</category>
    </item>
  </channel>
</rss>
