Data Batcher
s3lst_ds.data_batching.data_batching.DataBatcher
A class for batching data into cross-validation folds and a test set.
All splits are timestamp-specific, that is, the data of each timestamp is fully
contained by its associated batch. The timestamps considered for testing are the
ones whose Landsat data exists. Note that none of the Sentinel-3 data of such
timestamps will be used for training/cross-validation. The cross-validation
timestamps are randomly split into n_cross_val_folds folds with stratification (if
var_cross_val_strat is not None) and considering rnd_seed as random seed
number.
Attributes:
| Name | Type | Description |
|---|---|---|
data_wrangler |
DataWrangler
|
Wrangler for Sentinel-3, spatial predictor, AOI and Landsat data of multiple timestamps. |
n_cross_val_folds |
int, default=5
|
Number of cross-validation folds. |
var_cross_val_strat |
str or None, default=None
|
Metadata categorical variable with respect to which stratification in the cross-validation data splitting into folds is to be performed. If not defined, no stratification is considered. |
rnd_seed |
int or RandomState instance or None, default=None
|
Random seed number considered in the cross-validation data splitting into folds. If not defined, no such number is regarded. |
metadata_cross_val_splitter |
BaseCrossValidator
|
Get cross-validation splitter for the metadata of the wrangled data. The
splitter is a |
metadata |
DataFrame
|
Metadata DataFrame associated with the wrangled data having columns:
- |
batches |
list[str]
|
Aliases of the data batches:
- |
batch_fancy |
dict[str, str]
|
Mapper between batch aliases and their fancy counterparts. |
Methods:
| Name | Description |
|---|---|
__init__ |
Initialize instance by performing batching of the wrangled data into |
apply |
Use |
apply_set_data |
Use |
batch_data |
Create |
batch_metadata |
Batch the metadata into cross-validation folds and a test set. This is done by |
dropna |
Use |
get_batch_fancy |
Get mapper between aliases of the data batches and their fancy counterparts. |
get_batches |
Get aliases of the data batches: |
get_coords |
Get Sentinel-3's coordinates associated with issued |
get_cv |
Get training and validation position-indexes of issued |
get_data |
Get batched, wrangled, and, if |
get_data_X_and_mask |
Get batched, wrangled and, if |
get_data_y |
Get batched, wrangled and, if |
get_metadata |
Get values of metadata |
get_metadata_cross_val_splitter |
Get cross-validation splitter for the metadata of the wrangled data. The |
save |
Write the instance to |
set_data |
Set batched, wrangled and, if |
Source code in src/s3lst_ds/data_batching/data_batching.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 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 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 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 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 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 | |
metadata_cross_val_splitter
instance-attribute
__init__
__init__(
data_wrangler: DataWrangler,
n_cross_val_folds: int = 5,
var_cross_val_strat: str | None = None,
rnd_seed: int | RandomState | None = None,
) -> None
timestamps. Stratification on variable var_cross_val_strat is performed if
issued.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data_wrangler
|
DataWrangler
|
Wrangler for Sentinel-3, spatial predictor, AOI and Landsat data of multiple timestamps. |
required |
n_cross_val_folds
|
int
|
Number of cross-validation folds. |
5
|
var_cross_val_strat
|
str | None
|
Categorical variable with respect to which stratification in the cross-validation data splitting into folds is to be performed. If not defined, no stratification is considered. |
None
|
rnd_seed
|
int or RandomState instance or None
|
Random seed number considered in the cross-validation data splitting into folds. If not defined, no such number is regarded. |
None
|
Source code in src/s3lst_ds/data_batching/data_batching.py
apply
apply(
vars: str | list[str] | None = None,
batch: str | None = None,
grid: Literal["coarse", "fine"] | None = None,
trans: bool = False,
aggregate: bool = False,
**pandas_kwargs: Any,
) -> (
dict[Timestamp, Series | DataFrame]
| dict[str, dict[Timestamp, Series | DataFrame]]
| dict[Timestamp, dict[Literal["coarse", "fine"], Series | DataFrame]]
| dict[str, dict[Timestamp, dict[Literal["coarse", "fine"], Series | DataFrame]]]
)
Use pandas' apply method (of arguments pandas_kwargs) on batched, wrangled
and, if trans is True, further transformed data vars of issued batch
and grid aliases.
Note that if not defined, vars is set to all variables of the data. If batch
or grid are not issued, the data of all batches or grids are used and the
returned value is keyed by batch or grid aliases, respectively. If aggregate
is True, the data instead also of being keyed by timestamp is aggregated with
respect to it. If the instance has no transformation (attribute transform is
None), the untransformed data is the one considered regardless of the value of
trans.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
vars
|
str or list[str] or None
|
Variables of |
None
|
batch
|
str or None
|
Alias of the batch associated with the data. If not issued, the data of all
batches is used. If set to |
None
|
grid
|
(coarse, fine, None)
|
Alias of the grid associated with the data. If not issued, the data of both grids is used. |
"coarse"
|
trans
|
bool
|
Whether to consider transformed data. |
False
|
aggregate
|
bool
|
Whether to aggregate the result with respect to timestamps. |
False
|
pandas_kwargs
|
Any
|
Keyword arguments of |
{}
|
Returns:
| Type | Description |
|---|---|
dict[pd.Timestamp, pd.Series or pd.DataFrame] or dict[str, dict[pd.Timestamp,
|
|
pd.Series or pd.DataFrame]] or dict[pd.Timestamp, dict[{"coarse", "fine"},
|
|
pd.Series or pd.DataFrame]] or dict[
|
str, dict[ pd.Timestamp, dict[{"coarse", "fine"}, pd.Series or pd.DataFrame] ], |
]
|
Result of |
Source code in src/s3lst_ds/data_batching/data_batching.py
896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 | |
apply_set_data
apply_set_data(
vars_apply: str | list[str] | None = None,
vars_set: str | list[str] | None = None,
batch: str | None = None,
grid: Literal["coarse", "fine"] | None = None,
trans_apply: bool = False,
trans_set: bool | None = None,
**pandas_kwargs: Any,
) -> None
Use pandas' apply method (of arguments pandas_kwargs) on wrangled and, if
trans_apply is True, further transformed data vars of issued batch and
grid aliases and set the result to vars_set as transformed data if
trans_set is True or as untransformed data if otherwise.
If vars_apply is not defined, it is set to all variables of the data. If
vars_set or trans_set are not defined, they are set to vars_apply or
trans_apply, respectively. If batch or grid are not issued, the data of
all batches or grids (coarse and fine), respectively, is used and set. If there
is no transform in the instance (attribute transform is None), the
untransformed data is the one considered regardless of the value of trans.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
vars_apply
|
str or list[str] or None
|
Variables of |
None
|
vars_set
|
str or list[str] or None
|
Variables of |
None
|
batch
|
str or None
|
Alias of the batch associated with the data. If not issued, the data of all
batches is used. If set to |
None
|
grid
|
(coarse, fine, None)
|
Alias of the grid associated with the data. If not issued, the data of both grids is used. |
"coarse"
|
trans_apply
|
bool
|
Whether to consider transformed data in |
False
|
trans_set
|
bool or None
|
Whether to consider transformed data in |
None
|
pandas_kwargs
|
Any
|
Keyword arguments of |
{}
|
Source code in src/s3lst_ds/data_batching/data_batching.py
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 | |
batch_data
Create "batch" variable in the wrangled data with the aliases of the
respective batches.
Source code in src/s3lst_ds/data_batching/data_batching.py
batch_metadata
Batch the metadata into cross-validation folds and a test set. This is done by
defining column "batch" in the metadata DataFrame with values:
- "test": for timestamps whose Landsat data exists;
- "cross_val_1", ..., "cross_val_n_cross_val_folds": for timestamps
whose Landsat data does not exist, randomly batched into n_cross_val_folds
cross-validation folds with random state rnd_seed and stratification (if
var_cross_val_strat is issued).
Source code in src/s3lst_ds/data_batching/data_batching.py
dropna
dropna(
batch: str | None = None,
grid: Literal["coarse", "fine"] | None = None,
**pandas_kwargs: Any,
) -> None
Use pandas' dropna method (of arguments pandas_kwargs with inplace=True)
on wrangled untransformed and transformed data associated with the issued
batch and grid aliases.
Note that if batch or grid are not issued, the data of all batches or
grids is considered, respectively.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch
|
str or None
|
Alias of the batch associated with the data. If not issued, the data of all
batches is considered. If set to |
None
|
grid
|
(coarse, fine, None)
|
Alias of the grid associated with the data. If not issued, the data of both grids is considered. |
"coarse"
|
pandas_kwargs
|
Any
|
Keyword arguments of |
{}
|
Source code in src/s3lst_ds/data_batching/data_batching.py
get_batch_fancy
Get mapper between aliases of the data batches and their fancy counterparts.
Returns:
| Name | Type | Description |
|---|---|---|
batch_fancy |
dict[str, str]
|
Mapper between aliases of the data batches and their fancy counterparts. |
Source code in src/s3lst_ds/data_batching/data_batching.py
get_batches
Get aliases of the data batches:
- "test" - test set;
- "cross_val_1", ..., "cross_val_n_cross_val_folds" - cross-validation
folds.
Returns:
| Name | Type | Description |
|---|---|---|
batches |
list[str]
|
Aliases of the data batches. |
Source code in src/s3lst_ds/data_batching/data_batching.py
get_coords
get_coords(
batch: str | None = None, grid: Literal["coarse", "fine"] | None = None
) -> (
dict[Timestamp, DatasetCoordinates]
| dict[str, dict[Timestamp, DatasetCoordinates]]
| dict[Timestamp, dict[Literal["coarse", "fine"], DatasetCoordinates]]
| dict[str, dict[Timestamp, dict[Literal["coarse", "fine"], DatasetCoordinates]]]
)
Get Sentinel-3's coordinates associated with issued batch and grid aliases.
Note that if batch or grid alias are not issued, the returned value
corresponds to coordinates of all batches or grids, respectively, keyed by batch
or grid aliases. The coordinates are also keyed by timestamp.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch
|
str or None
|
Batch alias associated with the coordinates. If not issued, the coordinates
of all batches are considered. If set to |
None
|
grid
|
(coarse, fine, None)
|
Alias of the grid associated with the coordinates. If not issued, the coordinates of both grids are returned. |
"coarse"
|
Returns:
| Name | Type | Description |
|---|---|---|
coords |
dict[pd.Timestamp, xr.core.coordinates.DatasetCoordinates] or dict[str,
|
|
dict[pd.Timestamp, xr.core.coordinates.DatasetCoordinates]] or dict[
|
pd.Timestamp, dict[{coarse", "fine"}, xr.core.coordinates.DatasetCoordinates], |
|
] or dict[
|
str, dict[ pd.Timestamp, dict[{"coarse", "fine"}, xr.core.coordinates.DatasetCoordinates], ], |
|
]
|
Coordinates associated with Sentinel-3's issued |
Source code in src/s3lst_ds/data_batching/data_batching.py
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 | |
get_cv
Get training and validation position-indexes of issued data for each
cross-validation iteration. Note that data must be a pandas DataFrame with
column "batch" containing the batch aliases of the data records, or simply a
pandas Series corresponding to this very "batch" column. The data may be
obtained using method get_data(batch="cross_val", grid="coarse",
aggregate=True) of an instance of the current class.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
DataFrame or Series
|
Data whose position-indexes are to be extracted for the training and
validation sets of each cross-validation iteration. Must be a pandas
DataFrame with column |
required |
Returns:
| Name | Type | Description |
|---|---|---|
cv |
list[tuple[ndarray, ndarray]]
|
A list of tuples of training and validation position-indexes of |
Source code in src/s3lst_ds/data_batching/data_batching.py
get_data
get_data(
batch: str | None = None,
grid: Literal["coarse", "fine"] | None = None,
vars: str | list[str] | None = None,
trans: bool = False,
aggregate: bool = False,
) -> (
Series
| DataFrame
| dict[Timestamp, Series | DataFrame]
| dict[Literal["coarse", "fine"], Series | DataFrame]
| dict[str, Series | DataFrame]
| dict[Timestamp, dict[Literal["coarse", "fine"], Series | DataFrame]]
| dict[str, dict[Literal["coarse", "fine"], Series | DataFrame]]
| dict[str, dict[Timestamp, Series | DataFrame]]
| dict[str, dict[Timestamp, dict[Literal["coarse", "fine"], Series | DataFrame]]]
)
Get batched, wrangled, and, if trans is True, further transformed data
vars for issued batch and grid aliases.
Note that if vars is not issued, the data of all variables is returned. Also,
if batch or grid are not issued, the returned value corresponds to data of
all batches or grids, respectively, keyed by batch or grid aliases. If batch
is set to "cross_val" or "train" the data of all cross-validation folds is
considered. If aggregate is True, the data instead of also being keyed by
timestamp is aggregated with respect to it. If the instance has no
transformation (attribute transform is None), the untransformed data is the
one considered regardless of the value of trans.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch
|
str or None
|
Batch alias associated with the data. If not issued, the data of all batches
is considered. If set to |
None
|
grid
|
(coarse, fine, None)
|
Alias of the grid associated with the data. If not issued, the data of both grids is returned. |
"coarse"
|
vars
|
str or list[str] or None
|
Variables of the data to return. If not issued, the data of all variables is returned. |
None
|
trans
|
bool
|
Whether to get transformed data. |
False
|
aggregate
|
bool
|
Whether to aggregate the data with respect to timestamps. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
data |
pd.Series or pd.DataFrame or dict[pd.Timestamp, pd.Series or
|
|
pd.DataFrame] or dict[{"coarse", "fine"}, pd.Series or pd.DataFrame] or
|
|
|
dict[str, pd.Series or pd.DataFrame] or dict[pd.Timestamp, dict[{"coarse",
|
|
|
"fine"}, pd.Series or pd.DataFrame]] or dict[str, dict[{"coarse", "fine"},
|
|
|
pd.Series or pd.DataFrame]] or dict[str, dict[pd.Timestamp, pd.Series or
|
|
|
pd.DataFrame]] or dict[
|
str, dict[ pd.Timestamp, dict[{"coarse", "fine"}, pd.Series or pd.DataFrame], ], |
|
]
|
Batched, wrangled and, if |
Source code in src/s3lst_ds/data_batching/data_batching.py
490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 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 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 | |
get_data_X_and_mask
get_data_X_and_mask(
batch: str | None = None,
grid: Literal["coarse", "fine"] | None = None,
trans: bool = False,
aggregate: bool = False,
) -> (
DataFrame
| dict[Timestamp, DataFrame]
| dict[Literal["coarse", "fine"], DataFrame]
| dict[str, DataFrame]
| dict[Timestamp, dict[Literal["coarse", "fine"], DataFrame]]
| dict[str, dict[Literal["coarse", "fine"], DataFrame]]
| dict[str, dict[Timestamp, DataFrame]]
| dict[str, dict[Timestamp, dict[Literal["coarse", "fine"], DataFrame]]]
)
Get batched, wrangled and, if trans is True, further transformed predictor
and AOI mask data for issued timestamp and grid alias.
Note that if batch or grid are not issued, the returned value corresponds to
data of all batches or grids, respectively, keyed by batch or grid aliases. If
batch is set to "cross_val" or "train" the data of all cross-validation
folds is considered. If aggregate is True, the data instead of also being
keyed by timestamp is aggregated with respect to it. If the DataWrangler
instance has no transformation (attribute transform is None), the
untransformed data is the one considered regardless of the value of trans.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch
|
str or None
|
Batch alias associated with the data. If not issued, the data of all batches
is considered. If set to |
None
|
grid
|
(coarse, fine, None)
|
Alias of the grid associated with the data. If not issued, the data of both grids is returned. |
"coarse"
|
trans
|
bool
|
Whether to get transformed data. |
False
|
aggregate
|
bool
|
Whether to aggregate the data with respect to timestamps. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
data_X_and_mask |
pd.DataFrame or dict[pd.Timestamp, pd.DataFrame] or
|
|
dict[{"coarse", "fine"}, pd.DataFrame] or dict[str, pd.DataFrame] or
|
|
|
dict[pd.Timestamp, dict[{"coarse", "fine"}, pd.DataFrame]] or dict[str,
|
|
|
dict[{"coarse", "fine"}, pd.DataFrame]] or dict[str, dict[pd.Timestamp,
|
|
|
pd.DataFrame]] or dict[
|
str, dict[ pd.Timestamp, dict[{"coarse", "fine"}, pd.DataFrame], ], |
|
]
|
Batched, wrangled and, if |
Source code in src/s3lst_ds/data_batching/data_batching.py
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 | |
get_data_y
get_data_y(
batch: str | None = None,
grid: Literal["coarse", "fine"] | None = None,
trans: bool = False,
aggregate: bool = False,
) -> (
Series
| dict[Timestamp, Series]
| dict[Literal["coarse", "fine"], Series]
| dict[str, Series]
| dict[Timestamp, dict[Literal["coarse", "fine"], Series]]
| dict[str, dict[Literal["coarse", "fine"], Series]]
| dict[str, dict[Timestamp, Series]]
| dict[str, dict[Timestamp, dict[Literal["coarse", "fine"], Series]]]
)
Get batched, wrangled and, if trans is True, further transformed target data
for issued issued timestamp and grid alias.
Note that if batch or grid are not issued, the returned value corresponds to
data of all batches or grids, respectively, keyed by batch or grid aliases. If
batch is set to "cross_val" or "train" the data of all cross-validation
folds is considered. If aggregate is True, the data instead of also being
keyed by timestamp is aggregated with respect to it. If the DataWrangler
instance has no transformation (attribute transform is None), the
untransformed data is the one considered regardless of the value of trans.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch
|
str or None
|
Batch alias associated with the data. If not issued, the data of all batches
is considered. If set to |
None
|
grid
|
(coarse, fine, None)
|
Alias of the grid associated with the data. If not issued, the data of both grids is returned. |
"coarse"
|
trans
|
bool
|
Whether to get transformed data. |
False
|
aggregate
|
bool
|
Whether to aggregate the data with respect to timestamps. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
data_y |
pd.Series or dict[pd.Timestamp, pd.Series] or dict[{"coarse", "fine"},
|
|
pd.Series] or dict[str, pd.Series] or dict[pd.Timestamp, dict[{"coarse",
|
|
|
"fine"}, pd.Series]] or dict[str, dict[{"coarse", "fine"}, pd.Series]] or
|
|
|
dict[str, dict[pd.Timestamp, pd.Series]] or dict[str, dict[pd.Timestamp,
|
|
|
dict[{"coarse", "fine"}, pd.Series]]]
|
Batched, wrangled and, if |
Source code in src/s3lst_ds/data_batching/data_batching.py
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 | |
get_metadata
get_metadata(
batch: str | None = None, vars: str | list[str] | None = None
) -> Series | DataFrame | dict[str, Series | DataFrame]
Get values of metadata vars associated with batched and wrangled data for
issued batch.
Note that if vars is not issued, all metadata variables are returned. Also, if
batch is not issued, the returned value corresponds to metadata of all batches
keyed by batch. If batch is set to "cross_val" or "train" the metadata of
all cross-validation folds is considered.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch
|
str or None
|
Batch alias associated with the metadata. If not issued, the metadata of all
batches is considered. If set to |
None
|
vars
|
str or list[str] or None
|
Variables of the metadata to return. If not issued, all metadata variables are returned. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
metadata |
Series or DataFrame or dict[str, Series or DataFrame]
|
Values of metadata |
Source code in src/s3lst_ds/data_batching/data_batching.py
get_metadata_cross_val_splitter
Get cross-validation splitter for the metadata of the wrangled data. The
splitter is a StratifiedKFold instance if var_cross_val_strat is issued or
KFold otherwise.
Returns:
| Name | Type | Description |
|---|---|---|
metadata_cross_val_splitter |
BaseCrossValidator
|
Cross-validation splitter for the metadata of the wrangled data. |
Source code in src/s3lst_ds/data_batching/data_batching.py
save
Write the instance to path with joblib.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
Path
|
Path to write the instance to. |
required |
Source code in src/s3lst_ds/data_batching/data_batching.py
set_data
set_data(
values: dict[Timestamp, Series | DataFrame]
| dict[str, dict[Timestamp, Series | DataFrame]]
| dict[Timestamp, dict[Literal["coarse", "fine"], Series | DataFrame]]
| dict[str, dict[Timestamp, dict[Literal["coarse", "fine"], Series | DataFrame]]],
vars: str | list[str] | None = None,
batch: str | None = None,
grid: Literal["coarse", "fine"] | None = None,
trans: bool = False,
) -> None
Set batched, wrangled and, if trans is True, further transformed data vars
of issued batch and grid aliases to values.
Note that vars may correspond to new variables. If not defined, vars is set
to all variables of the data. If batch or grid is not issued, the data of
all batches or grids, respectively, is set. If there is no transform in the
instance (attribute transform is None), the untransformed data is the one
considered regardless of the value of trans.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
values
|
dict[Timestamp, Series | DataFrame] | dict[str, dict[Timestamp, Series | DataFrame]] | dict[Timestamp, dict[Literal['coarse', 'fine'], Series | DataFrame]] | dict[str, dict[Timestamp, dict[Literal['coarse', 'fine'], Series | DataFrame]]]
|
Values to set. |
required |
vars
|
str or list[str] or None
|
Variables of |
None
|
batch
|
str or None
|
Alias of the batch associated with the data. If not issued, the data of all
batches is set. If set to |
None
|
grid
|
(coarse, fine, None)
|
Alias of the grid associated with the data. If not issued, the data of both grids is set. |
"coarse"
|
trans
|
bool
|
Whether to set transformed data. |
False
|