An open API service indexing awesome lists of open source software.

https://github.com/saladtechnologies/image-tagging-api

An inference API for image tagging
https://github.com/saladtechnologies/image-tagging-api

Last synced: 4 months ago
JSON representation

An inference API for image tagging

Awesome Lists containing this project

README

          

# image-tagging-api
An inference API for image tagging

## Download model weights

```bash
wget https://huggingface.co/xinyu1205/recognize-anything-plus-model/resolve/main/ram_plus_swin_large_14m.pth -P ./src/data/
```

## Example Use

```bash
curl -X POST \
'http://localhost:8000/tag' \
--header 'Accept: */*' \
--form 'file=@/path/to/image.jpg'
```