Skip to content

JuliaTrustworthyAI/TaijaData.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TaijaData

Stable Dev Build Status Coverage Code Style: Blue

TaijaData is a package designed to simplify the process of fetching data for training and testing AI models.

How-to

Listing Available Functions/Datasets

To explore all the available functions and datasets, use:

data_catalogue

Choosing a Dataset

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.

Specifying the Number of Rows

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.