mirror of
https://github.com/IBM/ai-privacy-toolkit.git
synced 2026-04-26 13:26:21 +02:00
* Make ART black box classifier not apply preprocessing to data * Add option to store predictions (in addition to x,y) in Dataset and Data classes
7 lines
306 B
Python
7 lines
306 B
Python
"""
|
|
The AI Privacy Toolbox (datasets).
|
|
Implementation of datasets utility components for datasets creation, load, and store
|
|
"""
|
|
|
|
from apt.utils.datasets.datasets import Dataset, StoredDataset, DatasetFactory, Data, ArrayDataset, \
|
|
DatasetWithPredictions, OUTPUT_DATA_ARRAY_TYPE, DATA_PANDAS_NUMPY_TYPE
|