Skip to contents

A numeric embedding matrix corresponding to items.gpt5.4.example, provided for demonstrating GENIE without requiring an external embedding API call.

Usage

data("embeddings.gpt5.4.example")

Format

A 1536 x 180 numeric matrix. Rows are embedding dimensions and columns are items. Column names correspond to the item IDs in items.gpt5.4.example.

Details

The embeddings were generated from the GPT-5.4 example item pool using OpenAI's text-embedding-3-small embedding model. The matrix is oriented in the format expected by GENIE: embedding dimensions in rows and items in columns.

The corresponding item metadata are available as items.gpt5.4.example.

Examples

data("embeddings.gpt5.4.example")

dim(embeddings.gpt5.4.example)
#> [1] 1536  180

data("items.gpt5.4.example")
all(
  colnames(embeddings.gpt5.4.example) %in%
    as.character(items.gpt5.4.example$ID)
)
#> [1] TRUE