fix indent
Browse files- pipeline.py +1 -1
pipeline.py
CHANGED
@@ -11,7 +11,7 @@ class PreTrainedPipeline():
|
|
11 |
"Please implement PreTrainedPipeline __init__ function"
|
12 |
)
|
13 |
|
14 |
-
|
15 |
"""
|
16 |
Args:
|
17 |
inputs (:obj:`str`):
|
|
|
11 |
"Please implement PreTrainedPipeline __init__ function"
|
12 |
)
|
13 |
|
14 |
+
def __call__(self, inputs: str) -> List[List[Dict[str, float]]]:
|
15 |
"""
|
16 |
Args:
|
17 |
inputs (:obj:`str`):
|