data
Data arguments for the eye tracking data.
CopCo
dataclass
Bases: DataArgs
CopCo data.
Source code in src/configs/data.py
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 | |
CopCo_RCS
dataclass
Bases: CopCo
CopCo General Reading Comprehension
Source code in src/configs/data.py
176 177 178 179 180 181 182 183 184 185 186 187 | |
CopCo_TYP
dataclass
Bases: CopCo
CopCo Reading Type (Dyslexia vs. Typical)
Source code in src/configs/data.py
190 191 192 193 194 195 196 197 198 199 200 201 | |
DataArgs
dataclass
A dataclass for storing configuration parameters for handling eye tracking data.
Attributes:
| Name | Type | Description |
|---|---|---|
n_folds |
int
|
Number of folds for cross-validation. |
fold_index |
int
|
Defines the test fold. +1 is validation, rest (out of n_folds) are train. |
subject_column |
str
|
Column that defines the subject. |
unique_item_column |
str
|
Column that defines an item. |
ia_query |
str | None
|
Interest area query for filtering rows. |
fixation_query |
str | None
|
Fixation query for filtering rows. |
split_item_columns |
list[str]
|
Defines item for train-test split grouping. |
additional_groupby_columns |
list[str]
|
Additional columns for grouping data. |
groupby_columns |
list[str]
|
Columns used for grouping data. Defined in post_init. |
stratify |
str
|
Whether to stratify the data based on the target variable. |
processed_data_path |
Path
|
Path to the processed data directory. |
ia_path |
Path
|
Path to the interest area report. |
fixations_path |
Path
|
Path to the fixation report. |
all_folds_folder |
Path
|
Path to the folder containing all folds. |
folds_folder_name |
str
|
Name of the folder containing the folds. |
metadata_path |
Path
|
Path to the metadata file. |
higher_level_split |
str | None
|
Higher level split for the data. |
base_path |
Path
|
Base path for the data directory. |
max_scanpath_length |
int
|
The maximum scanpath length for the eye input. |
n_questions_per_item |
int
|
Number of questions associated with each item. |
Methods:
| Name | Description |
|---|---|
__post_init__ |
Initializes the groupby_columns attribute based on the values of other attributes. |
Source code in src/configs/data.py
13 14 15 16 17 18 19 20 21 22 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 | |
is_english
property
Return True if the dataset's text language is English. Handles both DatasetLanguage enum values and string names.
is_regression
property
Determine if the task is regression based on class_names. Regression tasks have a single class name (e.g., ['score'], ['lextale']). Classification tasks have multiple class names (e.g., ['Incorrect', 'Correct']).
IITBHGC
dataclass
Bases: DataArgs
IITBHGC data.
Source code in src/configs/data.py
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 | |
IITBHGC_CV
dataclass
Bases: IITBHGC
IITBHGC Hallucination Detection
Source code in src/configs/data.py
236 237 238 239 240 241 242 243 244 245 246 247 | |
MECOL2
dataclass
Bases: DataArgs
MECOL2 data.
Source code in src/configs/data.py
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 | |
MECOL2W1
dataclass
Bases: DataArgs
MECOL2W data.
Source code in src/configs/data.py
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 | |
MECOL2W2
dataclass
Bases: DataArgs
MECOL2W data.
Source code in src/configs/data.py
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 | |
MECOL2_LEX
dataclass
Bases: MECOL2
MECOL2 Text Reading Comprehension
Source code in src/configs/data.py
282 283 284 285 286 287 288 289 290 291 292 293 | |
OneStop
dataclass
Bases: DataArgs
OneStop data.
Source code in src/configs/data.py
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 | |
OneStop_RC
dataclass
Bases: OneStop
OneStop Is Correct
Source code in src/configs/data.py
416 417 418 419 420 421 422 423 424 425 426 427 428 429 | |
PoTeC
dataclass
Bases: DataArgs
PoTeC data.
Source code in src/configs/data.py
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 | |
PoTeC_DE
dataclass
Bases: PoTeC
PoTeC Background Knowledge
Source code in src/configs/data.py
476 477 478 479 480 481 482 483 484 485 486 487 | |
PoTeC_RC
dataclass
Bases: PoTeC
PoTeC Text Reading Comprehension
Source code in src/configs/data.py
490 491 492 493 494 495 496 497 498 499 500 501 502 | |
SBSAT
dataclass
Bases: DataArgs
SBSAT data.
Source code in src/configs/data.py
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 | |
SBSAT_RC
dataclass
Bases: SBSAT
SBSAT Text Reading Comprehension
Source code in src/configs/data.py
538 539 540 541 542 543 544 545 546 547 548 549 | |
SBSAT_STD
dataclass
Bases: SBSAT
SBSAT Subjective Difficulty
Source code in src/configs/data.py
552 553 554 555 556 557 558 559 560 561 562 | |
get_data_args(class_name)
Get the data path arguments class by its name.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
class_name
|
str
|
The name of the class. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
DataArgs |
DataArgs | None
|
An instance of the requested class. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the class name is not found. |
Source code in src/configs/data.py
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 | |