CoolFace
Apppublic

ymk00/test2

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
0likes
README.md93 linesDownload Raw Back to root
1---2title: Open Medical LLM Leaderboard3emoji: ๐Ÿ†4colorFrom: blue5colorTo: red6sdk: docker7hf_oauth: true8pinned: true9license: apache-2.010duplicated_from: open-llm-leaderboard/open_llm_leaderboard11short_description: Evaluating LLMs on medical tasks12tags:13  - leaderboard14  - modality:text15  - submission:manual16  - test:public17  - judge:function18  - eval:generation19  - language:english20  - domain:financial21---22https://arxiv.org/abs/2502.1877223 24# Open LLM Leaderboard25 26Modern React interface for comparing Large Language Models (LLMs) in an open and reproducible way.27 28## Features29 30- ๐Ÿ“Š Interactive table with advanced sorting and filtering31- ๐Ÿ” Semantic model search32- ๐Ÿ“Œ Pin models for comparison33- ๐Ÿ“ฑ Responsive and modern interface34- ๐ŸŽจ Dark/Light mode35- โšก๏ธ Optimized performance with virtualization36 37## Architecture38 39The project is split into two main parts:40 41### Frontend (React)42 43```44frontend/45โ”œโ”€โ”€ src/46โ”‚   โ”œโ”€โ”€ components/     # Reusable UI components47โ”‚   โ”œโ”€โ”€ pages/         # Application pages48โ”‚   โ”œโ”€โ”€ hooks/         # Custom React hooks49โ”‚   โ”œโ”€โ”€ context/       # React contexts50โ”‚   โ””โ”€โ”€ constants/     # Constants and configurations51โ”œโ”€โ”€ public/            # Static assets52โ””โ”€โ”€ server.js          # Express server for production53```54 55### Backend (FastAPI)56 57```58backend/59โ”œโ”€โ”€ app/60โ”‚   โ”œโ”€โ”€ api/           # API router and endpoints61โ”‚   โ”‚   โ””โ”€โ”€ endpoints/ # Specific API endpoints62โ”‚   โ”œโ”€โ”€ core/          # Core functionality63โ”‚   โ”œโ”€โ”€ config/        # Configuration64โ”‚   โ””โ”€โ”€ services/      # Business logic services65โ”‚       โ”œโ”€โ”€ leaderboard.py66โ”‚       โ”œโ”€โ”€ models.py67โ”‚       โ”œโ”€โ”€ votes.py68โ”‚       โ””โ”€โ”€ hf_service.py69โ””โ”€โ”€ utils/             # Utility functions70```71 72## Technologies73 74### Frontend75 76- React77- Material-UI78- TanStack Table & Virtual79- Express.js80 81### Backend82 83- FastAPI84- Hugging Face API85- Docker86 87## Development88 89The application is containerized using Docker and can be run using:90 91```bash92docker-compose up93```