test
Browse files
README.md
CHANGED
|
@@ -1,89 +1,10 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
The dashboard uses data from: [`hf-azure-internal/trending-models-analysis`](https://huggingface.co/datasets/hf-azure-internal/trending-models-analysis)
|
| 12 |
-
|
| 13 |
-
### Dataset Schema
|
| 14 |
-
|
| 15 |
-
The `models` section contains the following columns:
|
| 16 |
-
|
| 17 |
-
| Column | Type | Description |
|
| 18 |
-
|--------|------|-------------|
|
| 19 |
-
| `id` | string | Model identifier |
|
| 20 |
-
| `trending_rank` | integer | Current trending position |
|
| 21 |
-
| `author` | string | Model author/organization |
|
| 22 |
-
| `tags` | array | Model tags |
|
| 23 |
-
| `license` | string | Model license type |
|
| 24 |
-
| `library_name` | string | Framework used (e.g., transformers, diffusers) |
|
| 25 |
-
| `gated` | boolean | Whether model access is gated |
|
| 26 |
-
| `task` | string | Model task type |
|
| 27 |
-
| `is_in_catalog` | boolean | Whether model is in catalog |
|
| 28 |
-
| `is_custom_code` | boolean | Whether model uses custom code |
|
| 29 |
-
| `is_excluded_org` | boolean | Whether organization is excluded |
|
| 30 |
-
| `is_supported_license` | boolean | Whether license is supported |
|
| 31 |
-
| `is_supported_library` | boolean | Whether library is supported |
|
| 32 |
-
| `is_safetensors` | boolean | Whether model uses safetensors |
|
| 33 |
-
| `is_supported_task` | boolean | Whether task is supported |
|
| 34 |
-
| `is_securely_scanned` | boolean | Whether model is securely scanned |
|
| 35 |
-
| `collected_at` | datetime | Data collection timestamp |
|
| 36 |
-
| `model_status` | string | Status: "to add", "blocked", or "added" |
|
| 37 |
-
|
| 38 |
-
## Features
|
| 39 |
-
|
| 40 |
-
### User Controls
|
| 41 |
-
|
| 42 |
-
- **Date Filter**: Select a specific date to filter models by `collected_at` timestamp
|
| 43 |
-
- **Display Mode**: Choose between two viewing modes:
|
| 44 |
-
- **By Status**: Organize models into three sections based on `model_status`
|
| 45 |
-
- **By Trending Rank**: Display all models sorted by `trending_rank` (ascending)
|
| 46 |
-
|
| 47 |
-
### Display Sections
|
| 48 |
-
|
| 49 |
-
#### By Status Mode
|
| 50 |
-
Models are organized into three sections:
|
| 51 |
-
- **To Add**: Models with `model_status = "to add"`
|
| 52 |
-
- **Blocked**: Models with `model_status = "blocked"`
|
| 53 |
-
- **Added**: Models with `model_status = "added"`
|
| 54 |
-
|
| 55 |
-
#### By Trending Rank Mode
|
| 56 |
-
- Single section displaying all models sorted by `trending_rank`
|
| 57 |
-
|
| 58 |
-
### Model Cards
|
| 59 |
-
|
| 60 |
-
Each model displays:
|
| 61 |
-
- **Model ID**: Raw value from `id` column
|
| 62 |
-
- **Status Indicators**: Boolean fields shown as emojis
|
| 63 |
-
- π’ Green: `true` values
|
| 64 |
-
- π΄ Red: `false` values
|
| 65 |
-
- Fields: `is_in_catalog`, `is_custom_code`, `is_excluded_org`, `is_supported_license`, `is_supported_library`, `is_safetensors`, `is_supported_task`
|
| 66 |
-
- **Model Status**: Displayed in bold text
|
| 67 |
-
|
| 68 |
-
### Interactive Details
|
| 69 |
-
|
| 70 |
-
Clicking on any model card reveals additional information:
|
| 71 |
-
- **License Details**: Full license information
|
| 72 |
-
- **Task Information**: Specific task type
|
| 73 |
-
- **Library Details**: Framework/library used
|
| 74 |
-
- **Author Information**: Model author/organization
|
| 75 |
-
|
| 76 |
-
## Technical Requirements
|
| 77 |
-
|
| 78 |
-
- Will be hosted as a Hugging Face Spaces
|
| 79 |
-
- Interactive web interface
|
| 80 |
-
- Real-time data filtering
|
| 81 |
-
- Smooth animations for detail views
|
| 82 |
-
- Responsive design
|
| 83 |
-
|
| 84 |
-
## Development
|
| 85 |
-
|
| 86 |
-
This project will be implemented as a Hugging Face Space using:
|
| 87 |
-
- Python backend for data processing
|
| 88 |
-
- Interactive web framework (Gradio/Streamlit)
|
| 89 |
-
- Dataset integration via Hugging Face Hub
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Trending Models Dashboard
|
| 3 |
+
emoji: π
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: "4.0.0"
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: true
|
| 10 |
+
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|