Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/patw/imagevectorizer
A small tool for vectorizing images and text using CLIP
https://github.com/patw/imagevectorizer
clip vector
Last synced: 29 days ago
JSON representation
A small tool for vectorizing images and text using CLIP
- Host: GitHub
- URL: https://github.com/patw/imagevectorizer
- Owner: patw
- License: mit
- Created: 2023-10-31T22:14:25.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-21T02:36:39.000Z (10 months ago)
- Last Synced: 2024-11-28T15:13:01.816Z (29 days ago)
- Topics: clip, vector
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ImageVectorizer
A python FastAPI vector service for generating dense vectors from text and images using the CLIP model.The service will let you generate 512 dimension vectors for text or images for image similarity and image text search.
Does not need GPU to run.
## Local Installation
```
pip install -r requirements.txt
```## Local Running
```
uvicorn main:app --host 0.0.0.0 --port 3001 --reload
```