12412fsasf / pipeline.py
p-christ's picture
Update pipeline.py
4ef3fc4
raw
history blame
663 Bytes
from typing import Dict, List, Any
class PreTrainedPipeline():
def __init__(self, path=""):
# IMPLEMENT_THIS
# Preload all the elements you are going to need at inference.
# For instance your model, processors, tokenizer that might be needed.
# This function is only called once, so do all the heavy processing I/O here"""
def __call__(self, inputs: str) -> str:
"""
Args:
inputs (:obj:`str`):
a string to get the features from.
Return:
A :obj:`list` of floats: The features computed by the model.
"""
# IMPLEMENT_THIS
return "hello"