DatasetBag Class
The DatasetBag class represents a downloaded dataset packaged as a BDBag. It provides methods to access dataset contents, metadata, and associated files from the local filesystem.
SQLite-backed dataset access for downloaded BDBags.
This module provides the DatasetBag class, which allows querying and navigating downloaded dataset bags using SQLite. When a dataset is downloaded from a Deriva catalog, it is stored as a BDBag (Big Data Bag) containing:
- CSV files with table data
- Asset files (images, documents, etc.)
- A schema.json describing the catalog structure
- A fetch.txt manifest of referenced files
The DatasetBag class provides a read-only interface to this data, mirroring the Dataset class API where possible. This allows code to work uniformly with both live catalog datasets and downloaded bags.
Key concepts: - DatasetBag wraps a single dataset within a downloaded bag - A bag may contain multiple datasets (nested/hierarchical) - All operations are read-only (bags are immutable snapshots) - Queries use SQLite via SQLAlchemy ORM - Table-level access (get_table_as_dict, lookup_term) is on the catalog (DerivaMLDatabase)
Typical usage
Download a dataset from a catalog
bag = ml.download_dataset_bag(dataset_spec) # doctest: +SKIP
List dataset members by type
members = bag.list_dataset_members(recurse=True) # doctest: +SKIP for image in members.get("Image", []): # doctest: +SKIP ... print(image["Filename"])
DatasetBag
Read-only interface to a downloaded dataset bag.
DatasetBag manages access to a materialized BDBag (Big Data Bag) that contains a snapshot of dataset data from a Deriva catalog. It provides methods for:
- Listing dataset members and their attributes
- Navigating dataset relationships (parents, children)
- Accessing feature values
- Denormalizing data across related tables
- Feeding the bag to training frameworks via
as_torch_dataset/as_tf_dataset(framework adapters), or rewriting its layout viarestructure_assetsfor tools that expect a class-folder directory tree. All three share the sametargets/target_transform/missingvocabulary; see the User Guide "How to feed a bag to a training framework" section.
A bag may contain multiple datasets when nested datasets are involved. Each DatasetBag instance represents a single dataset within the bag - use list_dataset_children() to navigate to nested datasets.
For catalog-level operations like querying arbitrary tables or looking up vocabulary terms, use the DerivaMLDatabase class instead.
The class implements the DatasetLike protocol, providing the same read interface as the Dataset class. This allows code to work with both live catalogs and downloaded bags interchangeably.
Attributes:
| Name | Type | Description |
|---|---|---|
dataset_rid |
RID
|
The unique Resource Identifier for this dataset. |
dataset_types |
list[str]
|
List of vocabulary terms describing the dataset type. |
description |
str
|
Human-readable description of the dataset. |
execution_rid |
RID | None
|
RID of the execution associated with this dataset version, if any. |
model |
DatabaseModel
|
The DatabaseModel providing SQLite access to bag data. |
engine |
Engine
|
SQLAlchemy engine for database queries. |
metadata |
MetaData
|
SQLAlchemy metadata with table definitions. |
Example
Download a dataset
bag = dataset.download_dataset_bag(version="1.0.0") # doctest: +SKIP
List members by type
members = bag.list_dataset_members() # doctest: +SKIP for image in members.get("Image", []): # doctest: +SKIP ... print(f"File: {image['Filename']}")
Navigate to nested datasets
for child in bag.list_dataset_children(): # doctest: +SKIP ... print(f"Nested: {child.dataset_rid}")
Source code in src/deriva_ml/dataset/dataset_bag.py
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 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 | |
current_version
property
current_version: DatasetVersion
Get the version of the dataset at the time the bag was downloaded.
For a DatasetBag, this is the version that was current when the bag was created. Unlike the live Dataset class, this value is immutable since bags are read-only snapshots.
Returns:
| Name | Type | Description |
|---|---|---|
DatasetVersion |
DatasetVersion
|
The semantic version (major.minor.patch) of this dataset. |
path
property
path: Path
Filesystem path to this bag's root directory.
The bag is a self-contained, immutable snapshot on disk. path
is the directory containing data/, manifest-md5.txt, and
the bag's SQLite database. Use it to:
- Read materialized asset files relative to the bag.
- Diagnose "which bag is this?" errors in logs.
- Archive or copy the bag to a new location.
The directory exists for the lifetime of the bag object. Do not mutate anything inside it — bags are immutable by contract.
Returns:
| Name | Type | Description |
|---|---|---|
Path |
Path
|
Root directory of the materialized bag on disk. |
Example
spec = DatasetSpec(rid="1-abc123", version="1.2.0") bag = ml.download_dataset_bag(spec) print(f"Bag materialized at {bag.path}")
Read an asset file relative to the bag root
manifest = (bag.path / "manifest-md5.txt").read_text()
__init__
__init__(
catalog: "DerivaMLDatabase",
dataset_rid: RID | None = None,
dataset_types: str
| list[str]
| None = None,
description: str = "",
execution_rid: RID | None = None,
)
Initialize a DatasetBag instance for a dataset within a downloaded bag.
This mirrors the Dataset class initialization pattern, where both classes take a catalog-like object as their first argument for consistency.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
catalog
|
'DerivaMLDatabase'
|
The DerivaMLDatabase instance providing access to the bag's data. This implements the DerivaMLCatalog protocol. |
required |
dataset_rid
|
RID | None
|
The RID of the dataset to wrap. If None, uses the primary dataset RID from the bag. |
None
|
dataset_types
|
str | list[str] | None
|
One or more dataset type terms. Can be a single string or list of strings. |
None
|
description
|
str
|
Human-readable description of the dataset. |
''
|
execution_rid
|
RID | None
|
RID of the execution associated with this dataset version. If None, will be looked up from the Dataset_Version table. |
None
|
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If no dataset_rid is provided and none can be determined from the bag, or if the RID doesn't exist in the bag. |
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
__repr__
__repr__() -> str
Return a string representation of the DatasetBag for debugging.
Source code in src/deriva_ml/dataset/dataset_bag.py
231 232 233 234 235 236 | |
as_tf_dataset
as_tf_dataset(
element_type: str,
*,
sample_loader: Callable[
[Path | None, dict[str, Any]],
Any,
]
| None = None,
transform: Callable[[Any], Any]
| None = None,
targets: list[str]
| dict[str, Any]
| None = None,
target_transform: Callable[..., Any]
| None = None,
missing: Literal[
"error", "skip", "unknown"
] = "error",
output_signature: "tf.TensorSpec | tuple[tf.TensorSpec, ...] | None" = None,
) -> "tf.data.Dataset"
Build a tf.data.Dataset from this bag.
Creates a tf.data.Dataset backed by a Python generator that
reads samples and labels from this already-downloaded
DatasetBag. TensorFlow is imported lazily inside the builder
so the base library stays importable without TensorFlow installed.
Each call to the generator yields one element (sample, or
(sample, target) when targets is supplied). Callers are
responsible for chaining .batch() and .prefetch() to get
production throughput — the method does not apply batching itself.
Labels come from the bag's feature values via
bag.feature_values(element_type, feature_name, selector=...).
The user's target_transform maps the typed FeatureRecord
into whatever numeric shape the loss function expects. The library
does not hold or auto-fit a class-to-index table (design anchor 2).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
element_type
|
str
|
Name of the domain table whose rows become the
dataset's samples (e.g., |
required |
sample_loader
|
Callable[[Path | None, dict[str, Any]], Any] | None
|
For asset-table For non-asset-table |
None
|
transform
|
Callable[[Any], Any] | None
|
|
None
|
targets
|
list[str] | dict[str, Any] | None
|
Source of label data. Three shapes are accepted:
|
None
|
target_transform
|
Callable[..., Any] | None
|
Target arity:
|
None
|
missing
|
Literal['error', 'skip', 'unknown']
|
Behavior when a feature value is absent for an element:
|
'error'
|
output_signature
|
'tf.TensorSpec | tuple[tf.TensorSpec, ...] | None'
|
|
None
|
Returns:
| Type | Description |
|---|---|
'tf.data.Dataset'
|
A |
'tf.data.Dataset'
|
|
'tf.data.Dataset'
|
|
'tf.data.Dataset'
|
Callers must chain |
'tf.data.Dataset'
|
the returned dataset is unbatched. |
Raises:
| Type | Description |
|---|---|
ImportError
|
If TensorFlow is not installed. Install with
|
DerivaMLException
|
If |
FileNotFoundError
|
During iteration if the asset file is missing on disk (bag corrupted or removed after construction). |
Example
Simple image classification with a single feature label:
import PIL.Image # doctest: +SKIP bag = ml.download_dataset_bag(version="1.0.0") # doctest: +SKIP ds = bag.as_tf_dataset( # doctest: +SKIP ... element_type="Image", ... sample_loader=lambda p, row: tf.image.decode_jpeg( ... tf.io.read_file(str(p)) ... ), ... targets=["Glaucoma_Grade"], ... target_transform=lambda rec: CLASS_TO_IDX[rec.Grade], ... ) for batch in ds.batch(32).prefetch(2): # doctest: +SKIP ... images, labels = batch
Pure-Python assertion — runs for real:
from deriva_ml.dataset.tf_adapter import build_tf_dataset callable(build_tf_dataset) True
Source code in src/deriva_ml/dataset/dataset_bag.py
1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 | |
as_torch_dataset
as_torch_dataset(
element_type: str,
*,
sample_loader: Callable[
[Path | None, dict[str, Any]],
Any,
]
| None = None,
transform: Callable[[Any], Any]
| None = None,
targets: list[str]
| dict[str, Any]
| None = None,
target_transform: Callable[..., Any]
| None = None,
missing: Literal[
"error", "skip", "unknown"
] = "error",
) -> "torch.utils.data.Dataset"
Build a torch.utils.data.Dataset from this bag.
Creates a lazy PyTorch dataset that reads samples and labels from
this already-downloaded DatasetBag. The dataset's
__getitem__ returns individual samples (and optionally labels)
without materializing the entire dataset into memory at construction
time. Torch is imported lazily inside the builder so the base
library stays importable without torch installed.
This is the recommended path from a DatasetBag to a
torch.utils.data.DataLoader for custom training loops and
models. For workflows that need the ImageFolder-style class-
folder directory layout (e.g., torchvision.datasets.ImageFolder
or third-party fine-tuning scripts), use restructure_assets()
instead — the two tools are alternatives, not a pipeline.
Labels come from the bag's feature values via
bag.feature_values(element_type, feature_name, selector=...).
The user's target_transform maps the typed FeatureRecord
into whatever numeric shape the loss function expects. The library
does not hold or auto-fit a class-to-index table (design anchor 2).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
element_type
|
str
|
Name of the domain table whose rows become the
dataset's samples (e.g., |
required |
sample_loader
|
Callable[[Path | None, dict[str, Any]], Any] | None
|
For asset-table For non-asset-table |
None
|
transform
|
Callable[[Any], Any] | None
|
|
None
|
targets
|
list[str] | dict[str, Any] | None
|
Source of label data. Three shapes are accepted:
|
None
|
target_transform
|
Callable[..., Any] | None
|
Target arity:
|
None
|
missing
|
Literal['error', 'skip', 'unknown']
|
Behavior when a feature value is absent for an element:
|
'error'
|
Returns:
| Type | Description |
|---|---|
'torch.utils.data.Dataset'
|
A |
'torch.utils.data.Dataset'
|
|
'torch.utils.data.Dataset'
|
|
'torch.utils.data.Dataset'
|
|
'torch.utils.data.Dataset'
|
|
Raises:
| Type | Description |
|---|---|
ImportError
|
If PyTorch is not installed. Install with
|
DerivaMLException
|
If |
FileNotFoundError
|
On |
Example
Simple image classification with a single feature label:
import PIL.Image # doctest: +SKIP from torch.utils.data import DataLoader # doctest: +SKIP bag = ml.download_dataset_bag(version="1.0.0") # doctest: +SKIP ds = bag.as_torch_dataset( # doctest: +SKIP ... element_type="Image", ... sample_loader=lambda p, row: PIL.Image.open(p).convert("RGB"), ... targets=["Glaucoma_Grade"], ... target_transform=lambda rec: CLASS_TO_IDX[rec.Grade], ... ) loader = DataLoader(ds, batch_size=32, shuffle=True) # doctest: +SKIP
Pure-Python assertion — runs for real:
from deriva_ml.dataset.torch_adapter import build_torch_dataset callable(build_torch_dataset) True
Source code in src/deriva_ml/dataset/dataset_bag.py
1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 | |
dataset_history
dataset_history() -> list[
DatasetHistory
]
Retrieve the version history of this dataset from the bag.
Returns a list of all recorded versions for this dataset, read from
the bag's local SQLite Dataset_Version table.
Returns:
| Type | Description |
|---|---|
list[DatasetHistory]
|
list[DatasetHistory]: List of history entries, each containing: - dataset_version: Version number (major.minor.patch) - minid: Minimal Viable Identifier - snapshot: Catalog snapshot time - dataset_rid: Dataset Resource Identifier - version_rid: Version Resource Identifier - description: Version description - execution_rid: Associated execution RID |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If the bag SQLite database cannot be read. |
Example
history = bag.dataset_history() # doctest: +SKIP for entry in history: # doctest: +SKIP ... print(f"Version {entry.dataset_version}: {entry.description}")
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
describe_denormalized
describe_denormalized(
include_tables: list[str],
*,
row_per: str | None = None,
via: list[str] | None = None,
) -> dict[str, Any]
Dry-run the denormalization and return planning metadata.
Shortcut for
:meth:~deriva_ml.local_db.denormalizer.Denormalizer.describe —
returns the full plan dict (see that method's docstring for the
exact 12-key shape). Never raises on ambiguity.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
include_tables
|
list[str]
|
Tables whose columns would appear in the output. |
required |
row_per
|
str | None
|
Optional explicit leaf table (Rule 2). |
None
|
via
|
list[str] | None
|
Optional path-only intermediates (Rule 6). |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
dict[str, Any]
|
Planning metadata with 12 keys including |
dict[str, Any]
|
|
|
dict[str, Any]
|
and related diagnostics. See |
|
dict[str, Any]
|
the full shape. |
Example::
plan = bag.describe_denormalized(["Image", "Subject"])
print(plan["anchor"], plan["row_per"])
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
feature_values
feature_values(
table: str | Table,
feature_name: str,
selector: Callable[
[list[FeatureRecord]],
FeatureRecord | None,
]
| None = None,
materialize_limit: int
| None = None,
execution_rids: list[str]
| None = None,
) -> Iterable[FeatureRecord]
Yield offline feature values — same signature as DerivaML.feature_values.
Reads feature records from the bag's per-feature denormalization cache (populated lazily on first access). Because bags are immutable snapshots, the cache is stable for the bag's lifetime.
When selector is None, every stored record is yielded in source order.
When a selector is provided, records are grouped by target RID, the
selector is called once per group (always, even single-element groups),
and only groups for which the selector returns a non-None value appear
in the output.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table
|
str | Table
|
Target table name or |
required |
feature_name
|
str
|
Name of the feature to read (e.g. |
required |
selector
|
Callable[[list[FeatureRecord]], FeatureRecord | None] | None
|
Optional callable |
None
|
materialize_limit
|
int | None
|
Optional cap on the number of records
returned. The bag cache is already populated (bounded
by the snapshot), so this check is mainly for API
parity with the online |
None
|
execution_rids
|
list[str] | None
|
Optional filter -- when set, only feature
records whose |
None
|
Yields:
| Type | Description |
|---|---|
Iterable[FeatureRecord]
|
FeatureRecord instances with typed fields matching the feature |
Iterable[FeatureRecord]
|
definition. Selector-filtered records ( |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If feature_name does not exist on table. |
DerivaMLDataError
|
If the bag is corrupt (source table missing). |
DerivaMLMaterializeLimitExceeded
|
If the result set exceeds
|
Example
from deriva_ml.feature import FeatureRecord # doctest: +SKIP for rec in bag.feature_values("Image", "Glaucoma"): # doctest: +SKIP ... print(rec.Image, rec.Glaucoma)
With selector — one record per image, most recent wins:
records = list(bag.feature_values( # doctest: +SKIP ... "Image", "Glaucoma", selector=FeatureRecord.select_newest, ... ))
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
fetch_table_features
fetch_table_features(*args, **kwargs)
Retired — use feature_values(table, name) or Denormalizer.
DatasetBag.fetch_table_features has been removed. Use the new
feature_values method to read a single feature::
for rec in bag.feature_values("Image", "Quality"):
...
For wide-table denormalization across all features use the
Denormalizer subsystem.
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
Always. Points at the replacement API. |
Source code in src/deriva_ml/dataset/dataset_bag.py
777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 | |
find_features
find_features(
table: str | Table,
) -> Iterable[Feature]
Find all features defined on a table within this dataset bag.
Features are measurable properties associated with records in a table, stored as association tables linking the target table to vocabulary terms, assets, or metadata columns. This method discovers all such feature definitions for the given table.
Each returned Feature object provides:
feature_name: The feature's name (e.g.,"Classification")target_table: The table the feature applies tofeature_table: The association table storing feature valuesterm_columns,asset_columns,value_columns: Column role setsfeature_record_class(): A Pydantic model for reading/writing values
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table
|
str | Table
|
The table to find features for (name or Table object). |
required |
Returns:
| Type | Description |
|---|---|
Iterable[Feature]
|
An iterable of Feature instances describing each feature |
Iterable[Feature]
|
defined on the table. |
Example
for f in bag.find_features("Image"): # doctest: +SKIP ... print(f"{f.feature_name}: {len(f.term_columns)} terms, " ... f"{len(f.value_columns)} value columns")
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
get_denormalized_as_dataframe
get_denormalized_as_dataframe(
include_tables: list[str],
*,
row_per: str | None = None,
via: list[str] | None = None,
ignore_unrelated_anchors: bool = False,
) -> pd.DataFrame
Return the dataset bag as a denormalized wide table (DataFrame).
Shortcut for
:meth:~deriva_ml.local_db.denormalizer.Denormalizer.as_dataframe.
Works against the bag's local SQLite (no catalog needed). See the
Denormalizer class docstring for the full semantic rules
(Rules 1-8).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
include_tables
|
list[str]
|
Tables whose columns appear in the output. |
required |
row_per
|
str | None
|
Optional explicit leaf table (Rule 2). |
None
|
via
|
list[str] | None
|
Optional path-only intermediates (Rule 6). |
None
|
ignore_unrelated_anchors
|
bool
|
If True, silently drop anchors with no FK path (Rule 8). |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
A |
DataFrame
|
class: |
DataFrame
|
instance in the bag. Columns use |
Example::
bag = dataset.download_dataset_bag(version)
df = bag.get_denormalized_as_dataframe(["Image", "Subject"])
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
get_denormalized_as_dict
get_denormalized_as_dict(
include_tables: list[str],
*,
row_per: str | None = None,
via: list[str] | None = None,
ignore_unrelated_anchors: bool = False,
) -> Generator[
dict[str, Any], None, None
]
Stream the denormalized dataset bag rows as dicts.
Shortcut for
:meth:~deriva_ml.local_db.denormalizer.Denormalizer.as_dict.
Same rules and exceptions as
:meth:get_denormalized_as_dataframe but yields one dict per
row. Use this for large bags where a full DataFrame won't fit
in memory — each row is yielded as soon as it's produced.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
include_tables
|
list[str]
|
Tables whose columns appear in the output. |
required |
row_per
|
str | None
|
Optional explicit leaf table (Rule 2). |
None
|
via
|
list[str] | None
|
Optional path-only intermediates (Rule 6). |
None
|
ignore_unrelated_anchors
|
bool
|
If True, silently drop anchors with no FK path (Rule 8). |
False
|
Yields:
| Type | Description |
|---|---|
dict[str, Any]
|
|
dict[str, Any]
|
labels, values are raw Python types. |
Example::
for row in bag.get_denormalized_as_dict(["Image", "Subject"]):
process(row["Image.RID"], row["Subject.Name"])
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
get_table_as_dataframe
get_table_as_dataframe(
table: str,
) -> pd.DataFrame
Get table contents as a pandas DataFrame.
Convenience method that wraps get_table_as_dict() to return a DataFrame. Provides access to all rows in a table, not just those belonging to this dataset. For dataset-filtered results, use list_dataset_members() instead.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table
|
str
|
Name of the table to retrieve (e.g., "Subject", "Image"). |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with one row per record in the table. |
Example
df = bag.get_table_as_dataframe("Image") # doctest: +SKIP print(df.shape) # doctest: +SKIP
Source code in src/deriva_ml/dataset/dataset_bag.py
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 | |
get_table_as_dict
get_table_as_dict(
table: str,
) -> Generator[
dict[str, Any], None, None
]
Get table contents as dictionaries.
Convenience method that delegates to the underlying catalog. This provides access to all rows in a table, not just those belonging to this dataset. For dataset-filtered results, use list_dataset_members() instead.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table
|
str
|
Name of the table to retrieve (e.g., "Subject", "Image"). |
required |
Yields:
| Name | Type | Description |
|---|---|---|
dict |
dict[str, Any]
|
Dictionary for each row in the table. |
Example
for subject in bag.get_table_as_dict("Subject"): # doctest: +SKIP ... print(subject["Name"])
Source code in src/deriva_ml/dataset/dataset_bag.py
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 | |
list_dataset_children
list_dataset_children(
recurse: bool = False,
_visited: set[RID] | None = None,
version: Any = None,
**kwargs: Any,
) -> list[Self]
Return directly nested (child) datasets of this bag.
Queries the bag's local SQLite Dataset_Dataset association table
to find datasets nested inside this one.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recurse
|
bool
|
If |
False
|
_visited
|
set[RID] | None
|
Internal parameter tracking visited RIDs to guard against circular references. Callers should not pass this. |
None
|
version
|
Any
|
Ignored (bags are immutable snapshots; present for
API symmetry with |
None
|
**kwargs
|
Any
|
Additional arguments (ignored, for protocol compatibility). |
{}
|
Returns:
| Type | Description |
|---|---|
list[Self]
|
List of |
list[Self]
|
in the order returned by the SQLite query. |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If the bag SQLite database cannot be read. |
Example
children = bag.list_dataset_children(recurse=True) # doctest: +SKIP for child in children: # doctest: +SKIP ... print(child.dataset_rid, child.dataset_types)
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
list_dataset_element_types
list_dataset_element_types() -> (
Iterable[Table]
)
List the ERMrest Table objects that can be members of a dataset.
Delegates to the underlying DerivaMLDatabase to return all tables
that are linked to the Dataset table via association tables in the bag.
Returns:
| Type | Description |
|---|---|
Iterable[Table]
|
Iterable[Table]: ERMrest |
Iterable[Table]
|
table (e.g., Image, Subject, nested Dataset). |
Example
for table in bag.list_dataset_element_types(): # doctest: +SKIP ... print(table.name)
Source code in src/deriva_ml/dataset/dataset_bag.py
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 | |
list_dataset_members
list_dataset_members(
recurse: bool = False,
limit: int | None = None,
_visited: set[RID] | None = None,
version: Any = None,
**kwargs: Any,
) -> dict[str, list[dict[str, Any]]]
Return all members of this dataset bag grouped by table name.
Queries the local SQLite replica of the downloaded bag. Each key
in the returned dict is a table name (e.g. "Image"); each value
is a list of row dicts with the full set of columns for that table.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recurse
|
bool
|
If |
False
|
limit
|
int | None
|
Maximum number of members to return per table. |
None
|
_visited
|
set[RID] | None
|
Internal parameter to track visited datasets and prevent infinite recursion. Callers should not pass this. |
None
|
version
|
Any
|
Dataset version string (e.g. |
None
|
**kwargs
|
Any
|
Additional arguments (ignored, for protocol compatibility). |
{}
|
Returns:
| Type | Description |
|---|---|
dict[str, list[dict[str, Any]]]
|
Dict mapping table name to list of row dicts. Empty dict if |
dict[str, list[dict[str, Any]]]
|
no members are present. |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If the bag SQLite database cannot be read or the requested version is not present in the bag. |
Example
bag = ml.download_dataset_bag(spec) # doctest: +SKIP members = bag.list_dataset_members(recurse=True) # doctest: +SKIP images = members.get("Image", []) # doctest: +SKIP
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
list_dataset_parents
list_dataset_parents(
recurse: bool = False,
_visited: set[RID] | None = None,
version: Any = None,
**kwargs: Any,
) -> list[Self]
Return the parent datasets that contain this dataset as a nested member.
Queries the bag's local SQLite Dataset_Dataset association table to
find datasets in which this dataset appears as a Nested_Dataset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
recurse
|
bool
|
If |
False
|
_visited
|
set[RID] | None
|
Internal parameter tracking visited RIDs to guard against circular references. Callers should not pass this. |
None
|
version
|
Any
|
Ignored (bags are immutable snapshots; present for
API symmetry with |
None
|
**kwargs
|
Any
|
Additional arguments (ignored, for protocol compatibility). |
{}
|
Returns:
| Type | Description |
|---|---|
list[Self]
|
List of |
list[Self]
|
Empty list if this dataset has no parents in the bag. |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If the bag SQLite database cannot be read. |
Example
parents = bag.list_dataset_parents() # doctest: +SKIP for p in parents: # doctest: +SKIP ... print(p.dataset_rid)
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
list_denormalized_columns
list_denormalized_columns(
include_tables: list[str],
*,
row_per: str | None = None,
via: list[str] | None = None,
) -> list[tuple[str, str]]
List the columns the denormalized table would have.
Shortcut for
:meth:~deriva_ml.local_db.denormalizer.Denormalizer.columns.
Model-only — no data fetch. Runs the same Rule 2/5/6 validation
as :meth:get_denormalized_as_dataframe so planner errors
surface early.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
include_tables
|
list[str]
|
Tables whose columns appear in the output. |
required |
row_per
|
str | None
|
Optional explicit leaf table (Rule 2). |
None
|
via
|
list[str] | None
|
Optional path-only intermediates (Rule 6). |
None
|
Returns:
| Type | Description |
|---|---|
list[tuple[str, str]]
|
List of |
Example::
cols = bag.list_denormalized_columns(["Image", "Subject"])
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
list_executions
list_executions() -> list[RID]
List all execution RIDs associated with this dataset.
Returns all executions that used this dataset as input. This is tracked through the Dataset_Execution association table.
Note
Unlike the live Dataset class which returns Execution objects, DatasetBag returns a list of execution RIDs since the bag is an offline snapshot and cannot look up live execution objects.
Returns:
| Type | Description |
|---|---|
list[RID]
|
List of execution RIDs associated with this dataset. |
Example
bag = ml.download_dataset_bag(dataset_spec) # doctest: +SKIP execution_rids = bag.list_executions() # doctest: +SKIP for rid in execution_rids: # doctest: +SKIP ... print(f"Associated execution: {rid}")
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
list_feature_values
list_feature_values(
*args, **kwargs
) -> Iterable[FeatureRecord]
Retired — renamed to feature_values.
DatasetBag.list_feature_values has been removed. Use the new
feature_values method instead::
for rec in bag.feature_values("Image", "Quality"):
...
The signature is identical (table, feature_name, optional
selector).
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
Always. Points at the replacement API. |
Source code in src/deriva_ml/dataset/dataset_bag.py
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 | |
list_schema_paths
list_schema_paths(
tables: list[str] | None = None,
) -> dict[str, Any]
List FK paths reachable from this dataset bag's members.
Shortcut for
:meth:~deriva_ml.local_db.denormalizer.Denormalizer.list_paths.
Useful for schema exploration — answers "what tables could I
include in a denormalization of this bag?"
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tables
|
list[str] | None
|
Optional filter — when given, |
None
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
Dict with 6 keys: |
dict[str, Any]
|
|
dict[str, Any]
|
|
dict[str, Any]
|
meth: |
Example::
info = bag.list_schema_paths()
print(info["member_types"])
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
list_tables
list_tables() -> list[str]
List all tables available in the bag's SQLite database.
Returns the fully-qualified names of all tables (e.g., "domain.Image", "deriva-ml.Dataset") that were exported in this bag.
Returns:
| Type | Description |
|---|---|
list[str]
|
list[str]: Table names in "schema.table" format, sorted alphabetically. |
Source code in src/deriva_ml/dataset/dataset_bag.py
278 279 280 281 282 283 284 285 286 287 | |
list_workflow_executions
list_workflow_executions(
workflow: str,
) -> list[str]
Return execution RIDs from the bag that match the given workflow.
Reads the bag's local SQLite Execution table. The workflow argument
is resolved in order:
- Workflow RID — if a row in the
Workflowtable hasRID == workflow, return allExecution.RIDvalues whoseWorkflowcolumn matches. - Workflow_Type name — if no RID match, look up workflows via the
Workflow_Workflow_Typeassociation table and return executions for all matching workflows.
This mirrors the contract of DerivaML.list_workflow_executions but
operates entirely against the bag's offline SQLite data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
workflow
|
str
|
Workflow RID or |
required |
Returns:
| Type | Description |
|---|---|
list[str]
|
List of execution RIDs (possibly empty) that are associated with the |
list[str]
|
resolved workflow(s). |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If workflow cannot be resolved as either a Workflow RID or a Workflow_Type name in this bag. |
Example
rids = bag.list_workflow_executions("Glaucoma_Training_v2") # doctest: +SKIP print(len(rids)) # doctest: +SKIP 3
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
lookup_feature
lookup_feature(
table: str | Table,
feature_name: str,
) -> "Feature"
Look up a feature definition from bag metadata — works fully offline.
Returns a Feature object with the same shape as the one returned by
DerivaML.lookup_feature. The feature_record_class() method on the
returned object also works offline, enabling callers to construct
FeatureRecord instances from bag data for later staging via
exe.add_features when back online.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table
|
str | Table
|
Target table name or |
required |
feature_name
|
str
|
Name of the feature (e.g. |
required |
Returns:
| Type | Description |
|---|---|
'Feature'
|
Feature object for feature_name on table. |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If the feature does not exist on table in the bag. |
Example
feat = bag.lookup_feature("Image", "Glaucoma") # doctest: +SKIP RecordClass = feat.feature_record_class() # doctest: +SKIP record = RecordClass(Image="1-ABC", Glaucoma="Normal") # doctest: +SKIP print(record.Glaucoma) # doctest: +SKIP Normal
Source code in src/deriva_ml/dataset/dataset_bag.py
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 | |
restructure_assets
restructure_assets(
output_dir: Path | str,
*,
asset_table: str | None = None,
targets: "list[str] | dict[str, FeatureSelector] | None" = None,
target_transform: Callable[..., str]
| None = None,
missing: Literal[
"error", "skip", "unknown"
] = "unknown",
use_symlinks: bool = True,
type_selector: Callable[
[list[str]], str
]
| None = None,
type_to_dir_map: dict[str, str]
| None = None,
enforce_vocabulary: bool = True,
file_transformer: Callable[
[Path, Path], Path
]
| None = None,
) -> dict[Path, Path]
Restructure downloaded assets into a directory hierarchy.
Creates a directory structure organizing assets by dataset types and
target label values. This is useful for ML workflows that expect data
organized in conventional folder structures (e.g., PyTorch ImageFolder,
torchvision.datasets.ImageFolder).
The dataset should be of type Training or Testing, or have nested
children of those types. The top-level directory name is determined
by the dataset type (e.g., "Training" → "training").
Finding assets through foreign key relationships:
Assets are found by traversing all foreign key paths from the dataset,
not just direct associations. For example, if a dataset contains Subjects,
and the schema has Subject → Encounter → Image relationships, this method
will find all Images reachable through those paths even though they are
not directly in a Dataset_Image association table.
Handling datasets without types (prediction scenarios):
If a dataset has no type defined, it is treated as Testing. This is common for prediction/inference scenarios where you want to apply a trained model to new unlabeled data.
Handling missing labels:
If an asset doesn't have a value for a requested target, the missing
parameter controls the behavior: "unknown" (default) places the asset
in an "Unknown" directory; "skip" omits it from the output tree;
"error" raises at construction time listing all unlabeled RIDs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
output_dir
|
Path | str
|
Base directory for restructured assets. |
required |
asset_table
|
str | None
|
Name of the asset table (e.g., |
None
|
targets
|
'list[str] | dict[str, FeatureSelector] | None'
|
Source of directory-naming label data. Three shapes:
Column names (direct columns on the asset table, not features)
are resolved via column lookup on the asset record. They are
converted to strings for the directory name; Dotted |
None
|
target_transform
|
Callable[..., str] | None
|
Runtime constraint: the return type is checked at the first
call; a non- |
None
|
missing
|
Literal['error', 'skip', 'unknown']
|
Behavior when a target value is absent for an asset:
|
'unknown'
|
use_symlinks
|
bool
|
If True (default), create symlinks to original files.
If False, copy files. Symlinks save disk space but require
the original bag to remain in place. Ignored when
|
True
|
type_selector
|
Callable[[list[str]], str] | None
|
Function to select type when dataset has multiple types.
Receives list of type names, returns selected type name.
Defaults to selecting first type or |
None
|
type_to_dir_map
|
dict[str, str] | None
|
Optional mapping from dataset type names to directory
names. Defaults to |
None
|
enforce_vocabulary
|
bool
|
If True (default), only allow features that have controlled vocabulary term columns, and raise an error if an asset has multiple different values for the same feature. Set to False to allow non-vocabulary features and use the first value when multiple exist. |
True
|
file_transformer
|
Callable[[Path, Path], Path] | None
|
Optional callable invoked instead of the default
symlink/copy step. Receives Example — convert DICOM to PNG on placement::
|
None
|
Returns:
| Type | Description |
|---|---|
dict[Path, Path]
|
Manifest dict mapping each source |
dict[Path, Path]
|
|
dict[Path, Path]
|
and output paths differ only in directory location. When a |
dict[Path, Path]
|
transformer is provided, the output path may also differ in name |
dict[Path, Path]
|
or extension. |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If |
DerivaMLValidationError
|
If |
Examples:
Basic restructuring with auto-detected asset table::
manifest = bag.restructure_assets(
output_dir="./ml_data",
targets=["Diagnosis"],
)
# Creates:
# ./ml_data/training/Normal/image1.jpg
# ./ml_data/testing/Abnormal/image2.jpg
Custom type-to-directory mapping::
manifest = bag.restructure_assets(
output_dir="./ml_data",
targets=["Diagnosis"],
type_to_dir_map={"Training": "train", "Testing": "test"},
)
# Creates:
# ./ml_data/train/Normal/image1.jpg
# ./ml_data/test/Abnormal/image2.jpg
Per-feature selector for multi-annotator datasets::
from deriva_ml.feature import FeatureRecord
manifest = bag.restructure_assets(
output_dir="./ml_data",
targets={"Diagnosis": FeatureRecord.select_newest},
)
Extract a specific column from a multi-column feature::
manifest = bag.restructure_assets(
output_dir="./ml_data",
targets=["Classification"],
target_transform=lambda rec: rec.Label,
)
Convert DICOM files to PNG during restructuring::
from PIL import Image as PILImage
def oct_to_png(src: Path, dest: Path) -> Path:
img = load_oct_dcm(str(src))
out = dest.with_suffix(".png")
PILImage.fromarray((img * 255).astype(np.uint8)).save(out)
return out
manifest = bag.restructure_assets(
output_dir="./ml_data",
asset_table="OCT_DICOM",
targets=["Diagnosis"],
type_to_dir_map={"Training": "train", "Testing": "test"},
file_transformer=oct_to_png,
)
Note
Migration note (from pre-D2 signature):
group_by=["Diagnosis"]→targets=["Diagnosis"]group_by=["Classification.Label"]→targets=["Classification"], target_transform=lambda rec: rec.Labelvalue_selector=FeatureRecord.select_newest→targets={"Feature": FeatureRecord.select_newest}
See Also
DatasetBag.as_torch_dataset, DatasetBag.as_tf_dataset:
Framework adapters. Use these when you want lazy in-place
iteration and do NOT need a class-folder directory tree.
They share the same targets / target_transform /
missing vocabulary as restructure_assets. The two
paths are alternatives, not a pipeline — pick one per the
User Guide "How to feed a bag to a training framework".
Source code in src/deriva_ml/dataset/dataset_bag.py
1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 | |