pub struct PredictedSpan {
pub start: usize,
pub end: usize,
pub facet: String,
pub text: String,
pub negated: bool,
pub hedged: bool,
pub belief: f32,
}Expand description
A span predicted by the tuned tagger: byte offsets, its facet (Head A) and epistemic reading
(Head B, majority vote over the span’s tokens → the infon polarity i).
Fields§
§start: usize§end: usize§facet: String§text: String§negated: bool§hedged: bool§belief: f32the Dempster-Shafer belief level implied by the epistemic reading (±1 / ±0.5)
Trait Implementations§
Source§impl Clone for PredictedSpan
impl Clone for PredictedSpan
Source§impl Debug for PredictedSpan
impl Debug for PredictedSpan
Source§impl PartialEq for PredictedSpan
impl PartialEq for PredictedSpan
Source§impl Serialize for PredictedSpan
impl Serialize for PredictedSpan
impl StructuralPartialEq for PredictedSpan
Auto Trait Implementations§
impl Freeze for PredictedSpan
impl RefUnwindSafe for PredictedSpan
impl Send for PredictedSpan
impl Sync for PredictedSpan
impl Unpin for PredictedSpan
impl UnsafeUnpin for PredictedSpan
impl UnwindSafe for PredictedSpan
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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 moreCreates a shared type from an unshared type.