class documentation

class ModelTiling(Enum): (source)

View In Hierarchy

Describes whether and how a model supports tiling.

Constant DISCOURAGED The model supports tiling, but it is not recommended.
Constant INTERNAL The model does tiling (or similar) internally.
Constant SUPPORTED The model supports tiling.
DISCOURAGED: int = (source)

The model supports tiling, but it is not recommended.

This might be because the model heavily relies and global image information, and so tiling will likely cause artifacts.

Value
2
INTERNAL: int = (source)

The model does tiling (or similar) internally.

This is typically done by models that require global image information to work properly. As such, it is recommend to not do any tiling before passing the image to the model.

Value
3
SUPPORTED: int = (source)

The model supports tiling.

Value
1