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
- Host: GitHub
- URL: https://github.com/saladtechnologies/image-tagging-api
- Owner: SaladTechnologies
- License: mit
- Created: 2024-01-09T14:59:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-10T16:00:34.000Z (over 1 year ago)
- Last Synced: 2025-02-16T16:58:59.219Z (8 months ago)
- Language: Python
- Size: 760 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
```