ymk00/test2
0
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```