Loading Data
Basic Loading
from foundry import Foundry
f = Foundry()
results = f.search("band gap", limit=1)
dataset = results.iloc[0].FoundryDataset
# Load all data
data = dataset.get_as_dict()Understanding the Data Structure
data = {
'train': (X_train, y_train), # Inputs and targets
'test': (X_test, y_test),
}Loading Specific Splits
Loading with Schema
Data Types
Tabular Data
Working with DataFrames
HDF5 Data
Caching
Custom Cache Location
Clear Cache
Common Patterns
Train/Test Split
Single Target Column
Multiple Inputs
Error Handling
Last updated
Was this helpful?