Hey @markryancruz02,
Our ML team is currently working on creating a HEF and running Whisper on Hailo. This is a challenging task because Whisper is a large model, making it difficult to compile for the Hailo platform.
Regarding the error you’re encountering, the message AttributeError: 'NoneType' object has no attribute 'in_valid_subgraph'
suggests that you’re attempting to access the in_valid_subgraph
attribute of an object that is None
. This usually happens when a method or function is expected to return an object but instead returns None
, and then you try to access an attribute on that None
value.