Discover algorithms for deep learning under constraints.
The data that we are currently (2024-01-23) using is the UCI Adult Dataset and the function to build the data can be found under cdlsurvey.data
. It is a general function for building the Adult dataset to explore constrained deep learning. To use the function:
from cdlsurvey.data import get_data
train_df, test_df, feature_names = get_data()