Transforming raw user research data into actionable design insights through automated analysis. The tool achieved 60% reduction in manual analysis effort and generated 20+ personas within minutes.
This personal project aims to revolutionize how UX designers process research data, combining Flask, React, and AI to deliver powerful insights in record time.
The concept and motivation behind DesignIQ
Challenges in UX research analysis and persona creation
How the Flask backend and React frontend work together
CSV analysis and video interview processing techniques
Visualizations of actual quantitative and qualitative results
Using LLama and Groq for insight generation
Key code components and development challenges
Current capabilities and potential enhancements
DesignIQ transforms UX research workflows by automating data analysis and generating data-driven insights, saving researchers time and uncovering deeper patterns.
UX researchers spend 40-60% of their time processing raw data rather than generating actionable insights, with fragmented tools and manual processes.
60%
Time on analysis
12+
Disconnected tools
3 hrs
Persona creation
DesignIQ unifies qualitative and quantitative research analysis through an intelligent pipeline that processes surveys and interviews simultaneously.
85%
Analysis reduction
92%
Sentiment accuracy
5 min
Persona generation
Built with a Flask backend and React frontend, DesignIQ leverages advanced AI models to extract insights from research data.
LLama 3 for personas
DistilBERT for sentiment
MongoDB for storage
DesignIQ transforms the UX research workflow by automating mechanical tasks and highlighting meaningful patterns that researchers might otherwise miss.
3.5x
More insights
20+
Data-driven personas
2x
Faster recommendations
Despite a wealth of research tools and methodologies, UX designers face significant bottlenecks in translating raw data into actionable insights. Through my work on various UX projects, I identified three critical challenges that inspired the creation of DesignIQ.
UX researchers spend 40-60% of their time processing and analyzing data rather than generating actionable insights.
A 2-week research sprint typically yields only 2-3 days of actual solution ideation time.
Qualitative (interviews) and quantitative (surveys) data exist in separate systems with no unified analysis method.
Researchers manually cross-reference between systems, increasing the risk of missed patterns.
Persona generation often relies heavily on the researcher's interpretation rather than systematic data synthesis.
Resulting personas can reflect researcher bias rather than true user needs and behaviors.
DesignIQ transforms both raw interview data and survey csv files into actionable insights through AI-powered analysis, highlighting patterns and sentiment that would otherwise take hours to process manually.
These challenges presented an opportunity to create a tool that could drastically reduce the mechanical aspects of research analysis while enhancing the quality of insights. By leveraging AI to handle repetitive tasks, researchers could focus their expertise on strategy and solution development.
The key opportunity areas included:
DesignIQ employs a modern, modular architecture designed for extensibility and performance. The system processes complex data operations in the backend while providing a responsive user experience through the frontend.
Handles data processing, AI integration, and RESTful API endpoints. Manages file uploads, data analysis, and complex algorithms for research insights.
Provides an intuitive user interface for uploading research data, visualizing insights, and reviewing generated personas. Offers interactive data exploration.
Stores research datasets, analysis results, and user-generated personas. Enables quick retrieval of past analyses and linking between related research data.
Connects with third-party AI services for natural language processing, sentiment analysis, and persona generation using large language models.
The architecture strictly separates data processing, storage, and presentation to allow for independent scaling and maintenance. This decision has greatly simplified debugging and feature additions.
A structured data pipeline approach was implemented for handling both quantitative and qualitative data, allowing for standardized processing steps that can be monitored and optimized.
All functionality is exposed through a RESTful API, which not only serves the frontend but also enables potential integration with other tools in a UX researcher's workflow.
The core of DesignIQ is a sophisticated data processing pipeline that handles both qualitative and quantitative user research data. This dual-stream approach enables comprehensive analysis that captures both statistical patterns and emotional context.
The CSV Analyzer processes survey data through multiple analytical techniques to extract patterns, correlations, and statistical insights.
Automatically identifies numerical, categorical, and text-based fields to apply appropriate analysis techniques.
Performs descriptive statistics, frequency analysis, and distribution modeling on numerical data.
Extracts keywords, generates word clouds, and clusters similar responses for open-ended text fields.
Creates appropriate charts (bar, pie, histogram) based on data characteristics for immediate visual insight.
The Video Interview Analyzer transcribes and analyzes user interviews, extracting sentiment, key topics, and behavioral patterns.
Converts spoken interviews to text and automatically identifies question-answer pairs for contextual analysis.
Applies transformer-based models to analyze emotional tone at the sentence level, revealing user frustrations and excitement.
Extracts common behavioral patterns across multiple interviews using natural language processing techniques.
Groups similar insights and emotions to identify recurring themes and pain points mentioned by users.
I really liked how easy it was to navigate the main dashboard. The organization made sense to me. But I was frustrated when trying to export my data in a usable format.
The true power of DesignIQ emerges when quantitative and qualitative insights are combined. The system correlates survey responses with interview sentiments to create a comprehensive view of user needs, frustrations, and desires.
This integrated approach enables the creation of data-driven personas that incorporate both behavioral statistics and emotional context, resulting in more accurate and actionable user profiles.
DesignIQ processes both quantitative and qualitative UX research data to provide comprehensive insights. Below are examples of the actual analysis dashboards produced by the system.
Survey Data Processing & Visualization
The quantitative analysis dashboard automatically processes survey data to identify patterns and generate visualizations, reducing analysis time by 85%.
Interview & Open Response Processing
The qualitative analysis system extracts sentiment and key themes from interview transcripts, highlighting important user feedback that might otherwise be missed.
DesignIQ leverages state-of-the-art AI models to generate insights that would be impractical or impossible to achieve through manual analysis. The system combines multiple AI techniques to create a comprehensive understanding of user needs, behaviors, and emotions.
DistilBERT transformer models analyze interview transcripts to detect emotional tone and sentiment at the sentence level.
Enables granular understanding of user emotions about specific features or experiences.
LLama 3 processes research insights to generate comprehensive user personas with goals, frustrations, and opportunities.
Reduces persona creation time from days to minutes while increasing accuracy and reducing bias.
DBSCAN clustering and spaCy NLP identify recurring patterns in user behavior and preferences across multiple interviews.
Surfaces non-obvious connections and behaviors that might be missed in manual analysis.
Note: This example persona and journey were automatically generated by DesignIQ based on analysis of interview transcripts and survey data, identifying key touchpoints and friction areas in the user experience.
Provide clear instructions and tutorials on how to use the app's advanced features.
Offer more customization options to fit unique workflows and preferences.
Integrate with other popular apps and tools like Google Calendar and Slack.
DesignIQ's AI identified these solutions based on sentiment analysis and behavioral patterns found in research data, prioritizing them by impact and implementation feasibility.
Small changes in prompt structure dramatically affect the quality and usefulness of AI outputs. Detailed, structured prompts with clear constraints produce the most actionable results.
Different AI tasks require different specialized models. For example, sentiment analysis works best with transformer models like DistilBERT, while persona generation requires a more powerful generative model like LLama 3.
Even with advanced AI, human review and refinement of outputs significantly improves quality. DesignIQ allows researchers to edit and refine AI-generated content rather than replacing human expertise.
Implementing DesignIQ required balancing complex data processing capabilities with an intuitive user experience. The system needed to handle various data formats while providing insights that were both technically accurate and accessible to UX designers.
Core backend system handling file uploads, processing, and analysis with Flask.
Designing a flexible pipeline that could process various data formats consistently.
Database system for storing and retrieving analysis results and user profiles.
Creating a flexible schema that could accommodate various data types and analysis results.
Frontend interface for uploading files, configuring analysis, and viewing results.
Creating an intuitive UI that simplifies complex data visualization and analysis options.
Implemented chunk-based processing and used the SpeechFlow API to handle transcription in manageable segments, reducing memory usage by 60%.
Combined multiple models for different tasks: DistilBERT for sentiment classification, spaCy for NLP tasks, and custom clustering algorithms for pattern detection.
Used Python visualization libraries for backend data processing and Chart.js for frontend display, allowing for dynamic, interactive visualizations that adapt to different data sets.
Selecting the right AI models for each specific task (sentiment analysis, text classification, etc.) has a much greater impact on results than fine-tuning a single model for all purposes.
The design of the data processing pipeline significantly impacts both performance and flexibility. Investing time in crafting a robust pipeline architecture pays dividends when handling diverse data types.
Users strongly prefer seeing partial results and progress indicators over waiting for complete results, even if the total processing time is the same.
While DesignIQ is still a personal project, initial testing with sample data and simulated workflows has demonstrated significant potential for improving UX research efficiency and insight quality. Here are the key outcomes measured during development and testing.
DesignIQ reduced the time spent on mechanical analysis tasks from hours to minutes.
More insights extracted from the same research data compared to manual analysis.
High accuracy rate in context-aware sentiment detection for interview text.
Successfully implemented a unified system that processes both structured survey data and unstructured interview videos in a single platform, eliminating the need to switch between tools.
Created a system that generates detailed, data-driven personas directly from research findings, reducing persona creation time from days to minutes while increasing the accuracy and objectivity of the results.
Developed a sophisticated sentiment analysis system that understands context and nuance in user interviews, identifying positive and negative comments about specific features or experiences.
Large language models like LLama 3 can provide remarkably useful structured outputs when guided with carefully crafted prompts, but require significant iteration to optimize.
Processing video interviews in chunks is essential for handling longer recordings efficiently, but requires careful management of context across segments.
Transformer-based sentiment analysis models outperform traditional lexicon-based approaches for contextual understanding but require more computational resources.
UX researchers value transparency in AI-generated insights and prefer systems that explain their reasoning rather than black-box solutions.
The ability to edit and refine AI-generated content is essential for researchers who want to maintain control over final deliverables.
Real-time feedback during processing helps users trust the system more than waiting for final results without visibility into the process.
Add direct integration with tools like UserTesting, Dovetail, and Lookback to streamline the research workflow even further.
Enable live transcription and analysis during user interviews to provide immediate insights and suggest follow-up questions.
Add multi-user support with permissions, comments, and shared annotations to enhance team collaboration.
Add more sophisticated data visualization capabilities, including network diagrams and journey maps.
This is a personal project currently in active development. While not yet open-sourced, I'm considering making selected components available to the community in the future.
DesignIQ represents my effort to bridge the gap between raw research data and actionable UX insights. By leveraging AI to handle the mechanical aspects of research analysis, the tool aims to give UX professionals more time to focus on creative problem-solving and strategic thinking.
While still in development, the project has already demonstrated significant potential to transform how UX research is processed and utilized. The combination of advanced NLP, sentiment analysis, and large language models creates possibilities for more data-driven, objective, and efficient research workflows.
Most importantly, this project has been designed as a tool to enhance rather than replace human expertise. DesignIQ empowers UX designers by automating routine tasks, allowing them to apply their unique perspective, empathy, and strategic thinking where it matters most.