How to extend armlet#
Add new datasets#
Download and add the dataset in the folder
PROJECT_DIR/datasets/DATASET_NAME/.Create a Python file with a function that integrates the dataset loading along with its raw preprocessing.
Create a YAML config file with the name of the dataset in the folder
PROJECT_DIR/configs/data/dataset/to provide the new option for the config groupdata/dataset.
Add new ML models#
Create a Python file with the new ML model.
The model can then be used in the experiments by replacing the config value
method.hyperparameters.model(or for some model the loss function in the config valuemethod.hyperparameters.client.loss).
Add new metrics#
[TODO]