Data
Dataset class to standardize input data, with tools for cleaning, processing, viewing metadata, and comparing to ground truth
Dataset
dataclass
¶
Standardized container for input data.
Enforces required structural columns (item, model, run) and target
annotations. Provides utilities for column mapping, slicing, level of
measurement handling, and ground-truth integration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
_df
|
DataFrame
|
Long dataframe with model output data |
required |
target
|
str
|
Name of the column containing the annotations to compare |
required |
level
|
str | LevelType
|
Level of measurement of the target responses |
NOMINAL
|
mapping
|
dict[str, str]
|
Column mapping overrides for non-standard schema names,
e.g., |
dict()
|
Attributes:
| Name | Type | Description |
|---|---|---|
target |
str
|
Active target annotation column name |
level |
LevelType
|
Parsed level of measurement |
mapping |
dict[str, str]
|
Active schema column mappings |
Examples:
>>> import pandas as pd
>>> from interrater import Dataset
>>> df = pd.DataFrame({
... "item": [1, 1, 2, 2],
... "model": ["gpt-4", "claude", "gpt-4", "claude"],
... "run": [0, 0, 0, 0],
... "rating": ["A", "A", "B", "A"]
... })
>>> dataset = Dataset(df, target="rating", level="nominal")
>>> dataset
Dataset(n=4, target='rating', level='nominal', models=2, items=2)
Source code in interrater/base/dataset.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 | |
from_source(source, target, level=LevelType.NOMINAL)
classmethod
¶
Construct a Dataset directly from a file path, list, dictionary, or DataFrame
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source
|
PathOrDataFrame
|
Input source as a |
required |
target
|
str
|
Name of the column containing annotations. |
required |
level
|
str or LevelType
|
Measurement scale level ( |
LevelType.NOMINAL
|
Returns:
| Type | Description |
|---|---|
Dataset
|
An initialized |
Source code in interrater/base/dataset.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | |
with_ground_truth(source, target)
¶
Injects external ground-truth dataset as a reserved rater
Matches ground-truth annotations to items in the current data by item ID,
appends the matching rows, and returns a new Dataset instance
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source
|
PathOrDataFrame
|
Ground-truth data source as a |
required |
target
|
str
|
Name of the column containing annotations. |
required |
Returns:
| Type | Description |
|---|---|
Dataset
|
A new |
Raises:
| Type | Description |
|---|---|
ValueError
|
|
Source code in interrater/base/dataset.py
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | |
from_csv(path, target)
classmethod
¶
Convenience constructor to load a dataset directly from a CSV file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Path to the target CSV file. |
required |
target
|
str
|
Column name containing ratings or outputs. |
required |
Returns:
| Type | Description |
|---|---|
Dataset
|
An initialized |
Source code in interrater/base/dataset.py
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | |
raters
property
¶
Return unique rater pairs defined by (model, run) tuples.
Returns:
| Type | Description |
|---|---|
list[tuple[str, int]]
|
Unique combinations of models and run identifiers. |
df
property
¶
Return the standardized underlying DataFrame with mapped schema names.
Returns:
| Type | Description |
|---|---|
DataFrame
|
Renamed DataFrame enforcing canonical column names ( |
copy()
¶
Return a deep copy of the Dataset and its underlying DataFrame.
Returns:
| Type | Description |
|---|---|
Dataset
|
Cloned |
Source code in interrater/base/dataset.py
238 239 240 241 242 243 244 245 246 247 | |
slice(**filters)
¶
Filter rows by arbitrary metadata or column values.
Supports single values, lists, tuples, or sets for filtering by category.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
**filters
|
Any
|
Column name and target value(s) to slice on. |
{}
|
Returns:
| Type | Description |
|---|---|
Dataset
|
A new |
Raises:
| Type | Description |
|---|---|
KeyError
|
If any specified filter column does not exist in the DataFrame. |
Examples:
>>> subset = dataset.slice(category="clinical_vignettes")
>>> subset = dataset.slice(model=["gpt-4o", "claude-3-5-sonnet"])
Source code in interrater/base/dataset.py
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 | |
unique(column)
¶
Return sorted unique non-null values from a specified column.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
column
|
str
|
Target column name in the DataFrame. |
required |
Returns:
| Type | Description |
|---|---|
list
|
Sorted list of unique non-null values. |
Raises:
| Type | Description |
|---|---|
KeyError
|
If the requested column does not exist. |
Source code in interrater/base/dataset.py
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | |
models
property
¶
Return a list of unique models present in the dataset.
Examples:
>>> from interrater import Dataset
>>> dataset = Dataset(df, target="rating", level="nominal")
>>> dataset.models
['gpt-5.4-mini', 'gpt-5.4-nano']
runs
property
¶
Return a list of unique run identifiers present in the dataset.
Examples:
>>> from interrater import Dataset
>>> dataset = Dataset(df, target="rating", level="nominal")
>>> dataset.runs
[0, 1]
items
property
¶
Return a list of unique item identifiers present in the dataset.
Examples:
>>> from interrater import Dataset
>>> dataset = Dataset(df, target="rating", level="nominal")
>>> dataset.items
<StringArray>
['108052_daily_pattern_1',
'108052_daily_pattern_2',
'108052_daily_pattern_3',
'108052_findings_1',
'108052_findings_2',
'108052_findings_3',
'108052_findings_4',
'108052_findings_5',
'108052_top_recs']
Length: 23, dtype: str
metadata_columns
property
¶
List non-required metadata column names present in the dataset.
Examples:
>>> from interrater import Dataset
>>> dataset = Dataset(df, target="rating", level="nominal")
>>> dataset.metadata_columns
[category]
is_nominal
property
¶
True if measurement scale level is nominal.
is_ordinal
property
¶
True if measurement scale level is ordinal.
is_interval
property
¶
True if measurement scale level is interval.
is_ratio
property
¶
True if measurement scale level is ratio.
:::