pub struct PosStats {
pub gold_count: usize,
pub pred_count: usize,
pub correct: usize,
pub accuracy: f64,
}Expand description
품사별 통계
Fields§
§gold_count: usize정답 토큰 수
pred_count: usize예측 토큰 수
correct: usize정확하게 예측한 수
accuracy: f64정확도
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PosStats
impl RefUnwindSafe for PosStats
impl Send for PosStats
impl Sync for PosStats
impl Unpin for PosStats
impl UnsafeUnpin for PosStats
impl UnwindSafe for PosStats
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more