minerva.engines.engine

Classes

_Engine

Main interface for Engine classes. Engines are used to alter the behavior of a model's prediction.

Module Contents

class minerva.engines.engine._Engine[source]

Main interface for Engine classes. Engines are used to alter the behavior of a model’s prediction. An engine should be able to take a model and input data x and return a prediction. An use case for Engines is patched inference, where the model’s default input size is smaller them the desired input size. The engine can be used to make predictions in patches and combine this predictions in to a single output.

abstract __call__(model, x)[source]
Parameters:
  • model (Union[lightning.pytorch.LightningModule, torch.nn.Module])

  • x (Union[torch.Tensor, numpy.ndarray])