Spaces:
Runtime error
Runtime error
File size: 295 Bytes
c19ca42 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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
|