Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
sparse-generative-ai
/
open-moe-llm-leaderboard
like
30
Running
App
Files
Files
Community
33
refs/pr/25
open-moe-llm-leaderboard
/
Makefile
pingnie
delete binary files
14e4843
8 months ago
raw
Copy download link
history
blame
Safe
208 Bytes
.PHONY
: style format
style:
python -m black --line-length 119 .
python -m isort .
ruff
check
--fix .
quality:
python -m black --check --line-length 119 .
python -m isort --check-only .
ruff
check
.