ajosh0504 commited on
Commit
07d764d
1 Parent(s): 3d7b752

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -5
README.md CHANGED
@@ -3,11 +3,12 @@ license: apache-2.0
3
  task_categories:
4
  - question-answering
5
  - text-retrieval
 
6
  language:
7
  - en
8
  tags:
9
  - vector search
10
- - semantic search
11
  - retrieval augmented generation
12
  size_categories:
13
  - 1K<n<10K
@@ -15,9 +16,9 @@ size_categories:
15
 
16
  ## Overview
17
 
18
- This dataset consists of AirBnB listings with property descriptions, reviews and other metadata.
19
 
20
- We also provide embeddings (using OpenAI's **text-embedding-3-small** model) of the property descriptions so you can use this dataset for building Search and RAG applications.
21
 
22
  ## Dataset Structure
23
 
@@ -63,13 +64,14 @@ Here is a full list of fields contained in the dataset. Some noteworthy fields h
63
  - weekly_price: Discounted price for week
64
  - monthly_price: Discounted price for month
65
  - reviews_per_month: Average monthly review count
66
- - **space_embeddings**: Embeddings of the property description in the **space** field
 
67
 
68
  ## Usage
69
 
70
  This dataset can be useful for:
 
71
  - Building Hybrid Search applications. Use the embeddings provided for vector search and the metadata fields for pre-filtering and/or full-text search.
72
- - Building Multimodal Search applications. Some listings have images associated with them. Use a model like [CLIP](https://huggingface.co/openai/clip-vit-base-patch32) to generate image and text emebeddings.
73
  - Building RAG applications
74
 
75
  ## Ingest Data
 
3
  task_categories:
4
  - question-answering
5
  - text-retrieval
6
+ - text-to-image
7
  language:
8
  - en
9
  tags:
10
  - vector search
11
+ - multimodal
12
  - retrieval augmented generation
13
  size_categories:
14
  - 1K<n<10K
 
16
 
17
  ## Overview
18
 
19
+ This dataset consists of AirBnB listings with property descriptions, reviews, and other metadata.
20
 
21
+ It also contains text embeddings of the property descriptions as well as image embeddings of the listing image. The text embeddings were created using OpenAI's **text-embedding-3-small** model and the image embeddings using OpenAI's [**clip-vit-base-patch32**](https://huggingface.co/openai/clip-vit-base-patch32 model) available on Hugging Face.
22
 
23
  ## Dataset Structure
24
 
 
64
  - weekly_price: Discounted price for week
65
  - monthly_price: Discounted price for month
66
  - reviews_per_month: Average monthly review count
67
+ - **text_embeddings**: Embeddings of the property description in the `space` field
68
+ - **image_embeddings**: Embeddings of the `picture_url` in the `images` field
69
 
70
  ## Usage
71
 
72
  This dataset can be useful for:
73
+ - Building Multimodal Search applications. Embed text queries using the CLIP model, and retrieve relevant images using the image embeddings provided.
74
  - Building Hybrid Search applications. Use the embeddings provided for vector search and the metadata fields for pre-filtering and/or full-text search.
 
75
  - Building RAG applications
76
 
77
  ## Ingest Data