Skip to content

Latest commit

 

History

History
84 lines (55 loc) · 2.38 KB

Templates.md

File metadata and controls

84 lines (55 loc) · 2.38 KB

Templates Overview

Talos provides access to sets of templates consisting of the assets required by Scan() i.e. datasets, parameter dictionaries, and input models. In addition, talos.templates.pipelines consist of ready pipelines that combined the assets into a Scan() experiment and run it. These are mainly provided for educational, testing, and development purposes.

Each category of templates consists at least assets based on four popular machine learning datasets:

In addition, some categories (e.g. datasets) include additional templates. These are listed below and can be accessed through the corresponding namespace without previous knowledge.


Datasets

Datasets are preprocessed so that they can be used directly as inputs for deep learning models. Datasets are accessed through talos.templates.datasets. For example:

talos.templates.datasets.breast_cancer()

Available Datasets

  • breast_cancer
  • cervical_cancer
  • icu_mortality
  • telco_churn
  • titanic
  • iris
  • mnist

Params

Params consist of an indicative and somewhat meaningful parameter space boundaries that can be used as the parameter dictionary for Scan() experiments. Parameter dictionaries are accessed through talos.templates.params. For example:

talos.templates.params.breast_cancer()

Available Params

  • breast_cancer
  • cervical_cancer
  • titanic
  • iris

Models

Models consist of Keras models that can be used as an input model for Scan() experiments. Models are accessed through talos.templates.models. For example:

talos.templates.models.breast_cancer()

Available Models

  • breast_cancer
  • cervical_cancer
  • titanic
  • iris

Pipelines

Pipelines are self-contained Scan() experiments where you simply execute the command and an experiment is performed. Pipelines are accessed through talos.templates.pipelines. For example:

scan_object = talos.templates.pipelines.breast_cancer()

Available Pipelines

  • breast_cancer
  • cervical_cancer
  • titanic
  • iris