Description for ResultSet class

This class creates result set objects.

__init__(self, train_labels=[], train_predictions=[], test_labels=[], test_predictions=[], external_labels=[], external_predictions=[]) special

Initialise a result object.

Parameters:
  • train_labels (list) – Labels used for training a model.

  • train_predictions (list) – Output predictions on the training dataset of the model between 0 and 1.

  • test_labels (list) – Ground truth of the test dataset.

  • test_predictions (list) – Output predictions on the testing dataset of the model between 0 and 1.

  • external_labels (list) – Ground truth of the external dataset.

  • external_predictions (list) – Output predictions on the external dataset of the model between 0 and 1.