class PreTrainedPipeline(): | |
def __init__(self, path=""): | |
""" | |
Initialize model | |
""" | |
pass | |
def __call__(self, inputs): | |
return inputs |
class PreTrainedPipeline(): | |
def __init__(self, path=""): | |
""" | |
Initialize model | |
""" | |
pass | |
def __call__(self, inputs): | |
return inputs |