4112429d38
See https://github.com/vercel/next.js/pull/54342 and https://github.com/vercel/next.js/issues/54093 |
||
---|---|---|
.. | ||
public | ||
scripts | ||
src/app | ||
.env.local.example | ||
.eslintrc.json | ||
.gitignore | ||
Dockerfile | ||
README.md | ||
jsconfig.json | ||
next.config.js | ||
package-lock.json | ||
package.json | ||
postcss.config.js | ||
tailwind.config.js |
README.md
Semantic Image Search
This example shows you how to use Transformers.js to create a semantic image search engine. Check out the demo here.
Getting Started
Dataset
This application uses images from The Unsplash Dataset, which you can download here. All you need for this demo is the photos.tsv000
TSV file, which contains the metadata for all the images.
Connecting to Supabase
After creating a new Supabase project, you'll need to:
-
Create an
images
table and import the data fromphotos.tsv000
. -
Add a column for
image_embeddings
:-- Add a new vector column with a dimension of 512 alter table images add column image_embedding vector(512);
-
Add your
SUPABASE_URL
,SUPABASE_ANON_KEY
, andSUPABASE_SECRET_KEY
keys to a.env.local
file (see.env.local.example
for template). -
Update the image embeddings in your database by running the following command:
SUPABASE_URL=your-project-url \ SUPABASE_SECRET_KEY=your-secret-key \ node scripts/update-database.mjs
Note: This will take a while. Also, since queries are capped at 1000 returned rows, you'll need to run this command multiple times to insert all 25000 rows.
-
Create a new
match_images
database function:-- https://supabase.com/blog/openai-embeddings-postgres-vector create or replace function match_images ( query_embedding vector(512), match_threshold float, match_count int ) returns table ( photo_id text, photo_url text, photo_image_url text, photo_width int, photo_height int, photo_aspect_ratio float, photo_description text, ai_description text, blur_hash text, similarity float ) language sql stable as $$ select photo_id, photo_url, photo_image_url, photo_width, photo_height, photo_aspect_ratio, photo_description, ai_description, blur_hash, 1 - (image_embedding <=> query_embedding) as similarity from images where 1 - (image_embedding <=> query_embedding) > match_threshold order by similarity desc limit match_count; $$;
-
Add a database policy to allow users to view the database:
create policy "policy_name" on public.images for select using ( true );
Development
You can now run the development server with:
npm run dev
Open http://localhost:3000 with your browser to see the result.