Enhancing UI/UX Debugging with Memory-Efficient RAG and LLM Integration
| Metric | Result |
|---|---|
| CodeBERT Similarity | 97.36% |
| RAG Retrieval Precision (Top-5) | 89.98% |
| LLM-as-a-Judge Score | 7.86 / 10 |
| User Satisfaction | 8.3 / 10 |
The dataset for fine-tuning was made by scraping stackoverflow issues with specific tags (react.js, next.js, etc.).
- This dataset was then used to fine-tune the
open-mistral-7bmodel on Mistral Console. - We also performed fine-tuning using Axolotl on a Kaggle notebook with GPU T4 x2 accelerator and pushed the model to HuggingFace Repository.
git clone https://github.com/br34dcrumb/PixeLens.git
cd pixelenspython3 -m venv .venv
source .venv/bin/activatepip install -r requirements.txt
nodeenv -p --node=22.13.0cd frontend/
npm run devcd backend/
npm run start