1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
use std::error::Error;
use conllu::graph::Sentence;
pub mod categorical;
pub mod deprel;
pub mod layer;
pub mod lemma;
#[derive(Debug)]
pub struct EncodingProb<E> {
    encoding: E,
    prob: f32,
}
impl<E> EncodingProb<E>
where
    E: ToOwned,
{
    
    
    
    pub fn new(encoding: E, prob: f32) -> Self {
        EncodingProb { encoding, prob }
    }
    
    pub fn encoding(&self) -> &E {
        &self.encoding
    }
    
    pub fn prob(&self) -> f32 {
        self.prob
    }
}
impl<E> From<EncodingProb<E>> for (String, f32)
where
    E: Clone + ToString,
{
    fn from(prob: EncodingProb<E>) -> Self {
        (prob.encoding().to_string(), prob.prob())
    }
}
pub trait SentenceDecoder {
    type Encoding: ToOwned;
    
    type Error: Error;
    fn decode<S>(&self, labels: &[S], sentence: &mut Sentence) -> Result<(), Self::Error>
    where
        S: AsRef<[EncodingProb<Self::Encoding>]>;
}
pub trait SentenceEncoder {
    type Encoding;
    
    type Error: Error;
    
    fn encode(&self, sentence: &Sentence) -> Result<Vec<Self::Encoding>, Self::Error>;
}