File size: 817 Bytes
6c15abe 71b911e d88805c 6c15abe 9021dc4 6c15abe 4482aa7 f616e79 6c15abe 459ba9d 6c15abe ad421a8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
---
title: Ginkgo AbDev benchmark
emoji: 🔋
colorFrom: purple
colorTo: green
sdk: gradio
pinned: false
hf_oauth: true
hf_oauth_expiration_minutes: 480
hf_oauth_scopes:
- read-repos
- write-repos
- manage-repos
- inference-api
---
To run the gradio app, install the dependencies and run `python app.py`.
You can also do `gradio app.py` to use a filewatcher and update the app as you edit the files, but I haven't found that to work too well.
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
### Quickstart
Install `uv`
```
curl -LsSf https://astral.sh/uv/install.sh | sh
```
Create new environment and install requirements with `uv`
```
uv venv && uv pip install -r requirements.txt
```
Run app
```
uv run python app.py
```
Run tests
```
uv run pytest
```
|