Dataset Viewer
Auto-converted to Parquet Duplicate
The dataset viewer is not available for this split.
Rows from parquet row groups are too big to be read: 405.91 MiB (max=286.10 MiB)
Error code:   TooBigContentError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

Benchmark embedding models course

This repository gives you access to large datasets for the embedding models course. Since these files are too big for GitHub, you’ll find them in the datasets folder. Each file includes:

  • Text chunks taken from documents.
  • Questions that can be answered using those chunks.

Data format

Each JSON file looks like this:

{
    "chunks": [
        {
            "id": 0,
            "text_chunk": "",
            "embeddings": {
                "gemini-embedding-001": [],
            }
        },
        ...
    ],
    "question_answer_pairs": [
        {
            "chunk_id": 0,
            "question": "",
            "embeddings": {
                "gemini-embedding-001": [],
            }
        },
        ...
    ]
}
  • Every text_chunk and question has an embeddings field.
  • The embeddings field stores dense vectors from different models.

How to use

  1. Download this repository, or just the JSON files you need.
  2. Put the files in the data/embeddings/ folder of the Benchmark_Embedding_Models repository.
  3. You’ll use these files in the following notebooks:

License

This repository is licensed under the MIT License.

Downloads last month
49