TaijaData is a package designed to simplify the process of fetching data for training and testing AI models.
To explore all the available functions and datasets, use:
data_catalogue
Once you've reviewed the catalog, select a collection, such as the synthetic
dataset collection:
data_catalogue[:synthetic]
This will display a list of available synthetic datasets. For example, if you wish to import the blobs data:
x, y = load_blobs()
Here, x
represents the input features matrix, and y
contains the labels for each entry.
If you want to fetch a specific number of rows, you can specify the desired count:
x, y = load_blobs(100)
This command fetches 100 rows of data from the blobs dataset.