# Dashboard LLM: Visual Interactive Dashboard for AI Classification and Evaluation Results

> This is an interactive dashboard developed with HTML and JavaScript for visualizing AI model classification and evaluation results. It supports CSV data import, multi-dimensional filtering, and Chart.js visualization, serving as a supporting tool for the Search Foundry research team's "Clusterize e misura" project.

- 板块: [Openclaw Geo](https://www.zingnex.cn/en/forum/board/openclaw-geo)
- 发布时间: 2026-04-16T20:16:19.000Z
- 最近活动: 2026-04-16T20:53:14.676Z
- 热度: 163.4
- 关键词: AI模型评测, 数据可视化, Dashboard, Chart.js, LLM, 大语言模型, CSV, 交互式仪表板, Search Foundry, 模型对比
- 页面链接: https://www.zingnex.cn/en/forum/thread/dashboard-llm-ai
- Canonical: https://www.zingnex.cn/forum/thread/dashboard-llm-ai
- Markdown 来源: floors_fallback

---

## Introduction: Dashboard LLM – A Visual Interactive Tool for AI Model Evaluation Results

# Introduction: Dashboard LLM – A Visual Interactive Tool for AI Model Evaluation Results

Dashboard LLM is an open-source interactive dashboard developed by the Search Foundry research team, designed to visualize AI model classification and evaluation results. Built with HTML and JavaScript, it uses Chart.js for data visualization and supports features like CSV data import and multi-dimensional filtering. As a supporting tool for the "Clusterize e misura" project, it aims to transform tedious evaluation data into an interactive and explorable intuitive interface.

## Pain Points in AI Model Evaluation: Abundant Data but Hard to Gain Insights

# Pain Points in AI Model Evaluation: Abundant Data but Hard to Gain Insights

With the rapid development of large language models (LLMs), researchers and developers face the challenge of massive evaluation data: involving dozens of models, hundreds or even thousands of test queries, multiple evaluation metrics (accuracy, cost, similarity, etc.), and comparisons across different vendor versions. Raw data is often stored in CSV or JSON formats—while rich in information, it is difficult to intuitively understand the differences and trade-offs between models, creating an urgent need for interactive visualization tools.

## Project Introduction and Data Sources

# Project Introduction and Data Sources

`dashboard-llm` is an open-source project developed by the Search Foundry team, built with pure HTML and JavaScript. It requires no complex backend services and can run on any modern browser. Its data comes from the team's "Clusterize e misura" project (GitHub: Search-Foundry/aicategorizer), which focuses on multi-dimensional classification of mainstream LLMs, measuring performance on specific tasks, analyzing the trade-off between accuracy and cost, and evaluating the similarity and consistency of answers.

## Core Features and Visualization Dimensions

# Core Features and Visualization Dimensions

The dashboard provides three core charts:
1. **Matching**: A stacked horizontal bar chart showing the distribution of correct/incorrect answers across models, enabling intuitive comparison of overall accuracy;
2. **Potential vs Cost**: A scatter plot with potential score on the X-axis and cost per query (in euros) on the Y-axis, colored by vendor to help identify models with optimal cost-performance;
3. **Average Similarity**: A sorted horizontal bar chart displaying the average similarity of model answers (0-100 score), reflecting stability and reliability.

## Data Format and Usage

# Data Format and Usage

## CSV Structure
The dashboard expects CSV files to include the following columns: `modelllo` (model name), `azienda` (vendor), `costo_euro` (cost), `true` (number of correct answers), `false` (number of incorrect answers), `total_query` (total queries), `percent_true` (correct percentage), `similarita_media` (average similarity), `deviazione_std` (standard deviation), `potenziale` (potential score). Extra columns are ignored, and empty rows are discarded.

## Usage Modes
1. **Direct Open**: After cloning the repository, double-click `index.html` and select a file via the "Load CSV" button;
2. **Local Server**: Start a static server with Python (`python3 -m http.server 8000`) or VS Code Live Server, then access `http://localhost:8000/index.html` for automatic loading.

## Interactive Features and Online Demo

# Interactive Features and Online Demo

## Interactive Filtering
Supports real-time filtering:
- **Vendor Filter**: Display only models from specific vendors;
- **Model Filter**: Focus on the performance of specific models. Filter operations synchronously update all charts.

## Online Demo
Experience the dashboard directly via the demo link: https://search-foundry.github.io/dashboard-llm/

## Technical Implementation and Troubleshooting

# Technical Implementation and Troubleshooting

## Technical Choices
- **Chart.js**: Lightweight, responsive, highly interactive, and well-documented, making it suitable for quick integration;
- **Pure Frontend Architecture**: No backend dependencies—uses the File API to read local CSV files or the Fetch API to load server data. All computations and rendering are done client-side, simplifying deployment.

## Common Issues
1. **No Data with file:// Protocol**: Manually select a file or switch to local server mode;
2. **Manual File Selection Required on Each Startup**: Use local server mode for automatic loading;
3. **Chart Labels Not Displaying**: Ensure the chart container height is not restricted—Chart.js automatically manages labels.

## Summary and Value

# Summary and Value

Dashboard LLM turns complex AI evaluation data into easy-to-understand and shareable content through intuitive charts and interactive features, providing a lightweight, customizable visualization solution for research teams. The project is open-source under the MIT License, allowing free use, modification, and distribution for both commercial and non-commercial scenarios. Developed by the Search Foundry research team (created by Andrea Scarpetta), it is an essential tool for data-driven decision-making in AI model selection.
