bilegentile's picture
Upload folder using huggingface_hub
c19ca42 verified
raw
history blame contribute delete
295 Bytes
from nodes.base_input import BaseInput
from ...impl.ncnn.model import NcnnModelWrapper
class NcnnModelInput(BaseInput):
"""Input for NcnnModel"""
def __init__(self, label: str = "Model"):
super().__init__("NcnnNetwork", label)
self.associated_type = NcnnModelWrapper