hyperdeep addon registry add https://addons.hyperdeep.ai/v1
If you want to know which hyperdeep addons better your current setup, here is the definitive list of must-have plugins.
A minimal addon that logs tensor shapes: hyperdeep addons better
# my_addon/addon.py from hyperdeep.addons import Addon, HookPointclass ShapeLogger(Addon): name = "shape_logger" version = "1.0.0"
def setup(self): self.register(HookPoint.FORWARD_PRE, self.log_shape) def log_shape(self, context): tensor = context.args[0] self.log(f"Shape: tensor.shape, dtype: tensor.dtype") return context # unchanged
Build & install:
hyperdeep addon build ./my_addon
hyperdeep addon install ./dist/shape_logger.hda
To illustrate the practical superiority of this approach, consider the following industries:
AudioResponse simply moved the jaw up and down. GeniusLipSync uses a phoneme database (visemes) to match specific mouth shapes to syllables. hyperdeep addon registry add https://addons