This function gives access to key datasets included in the baserater package.

download_data(
  which = c("database", "validation_ratings", "typicality_matrix_gpt4",
    "typicality_matrix_llama3.3", "material"),
  dest = NULL
)

Arguments

which

One of "database", "validation_ratings", "typicality_matrix_gpt4", "typicality_matrix_llama3.3", or "material".

dest

Optional path to copy the file to (returns the data either way).

Value

A tibble with the requested data.

Details

  • The "database" object includes all base-rate items along with stereotype strength estimates from 'GPT-4' and 'LLaMA 3.3'.

  • The "validation_ratings" object contains average typicality judgments from 50 human participants on 100 group–adjective pairs, as well as ratings from 'GPT-4' and 'LLaMA 3.3'.

  • The "typicality_matrix_gpt4" and "typicality_matrix_llama3.3" objects are raw typicality matrices generated by each model.

  • The "material" object contains the lists of individual groups and adjectives used to build the base-rate database.

Examples


database <- download_data("database")

ratings <- download_data("validation_ratings")

gpt4_matrix <- download_data("typicality_matrix_gpt4")

llama3_matrix <- download_data("typicality_matrix_llama3.3")

material <- download_data("material")