File size: 867 Bytes
09b4276
 
 
c2e7c9e
 
09b4276
 
 
 
 
cbdc24e
09b4276
a6b9062
09b4276
 
 
 
 
0094748
09b4276
 
4677e07
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from typing import Dict, List, Any
from nemo.collections.nlp.models import PunctuationCapitalizationModel


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"""
        self.model = PunctuationCapitalizationModel.from_pretrained("dchaplinsky/punctuation_uk_bert")

    def __call__(self, inputs: str) -> List[Dict]:
        """
        Args:
            inputs (:obj:`str`):
                a string containing some text
        Return:
            A :obj:`str`
        """
        inputs = inputs.strip()
        return [{"generated_text": self.model.add_punctuation_capitalization([inputs])[0]}]