Architecture overview

Hyrax uses verbs

Hyrax defines a set of commands, called verbs, that are the primary mode of interaction. Verbs are meant to be intuitive and easy to remember. For instance, to train a model, you would use the train verb. To use a trained model for inference, you would use the infer verb.

Notebook, CLI, or Both

Hyrax is designed to be used in a Jupyter notebook or from the command line without modification. This supports exploration and development in a familiar notebook environment and deployment to an HPC or Slurm system for large scale training.

from hyrax import Hyrax

h = Hyrax(config_file = 'my_config.toml')
h.train()