Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```