Spaces:
Running
on
T4
Running
on
T4
File size: 526 Bytes
088e542 a277bb8 0ead84b 088e542 0ead84b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
---
title: CountGD_Multi-Modal_Open-World_Counting
sdk: docker
app_port: 7860
---
# CountGD: Multi Modal Open World Counting Model
To Run Locally, the best method is to use docker.
Make sure you have installed docker, nvidia-driver and nvidia container toolkit for the your platform.
Then, you can run the app locally with the following command
```bash
docker run -it \
--name countgd \
-p 7860:7860 \
--platform=linux/amd64 \
--gpus all \
registry.hf.space/nikigoli-countgd:latest \
python app.py
``` |