File size: 570 Bytes
580e6ed
 
3337848
c044e77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81a3c2a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from typing import List

import os
import fasttext.util

class PreTrainedPipeline():
    def __init__(self, path=""):
        """
        Initialize model
        """
        self.model = fasttext.load_model(os.path.join(path, 'cc.en.300.bin'))

    def __call__(self, inputs: str) -> List[float]:
        """
        Args:
            inputs (:obj:`str`):
                a string to get the features of.
        Return:
            A :obj:`list` of floats: The features computed by the model.
        """
        return self.model.get_sentence_vector(inputs).tolist()