pub struct HuggingFaceDataset {
pub name: String,
pub split: String,
pub data: Vec<Value>,
pub features: HashMap<String, Value>,
pub metadata: HashMap<String, Value>,
}
Expand description
Real HuggingFace dataset loader with Hub API integration
Fields§
§name: String
§split: String
§data: Vec<Value>
§features: HashMap<String, Value>
§metadata: HashMap<String, Value>
Implementations§
Auto Trait Implementations§
impl Freeze for HuggingFaceDataset
impl RefUnwindSafe for HuggingFaceDataset
impl Send for HuggingFaceDataset
impl Sync for HuggingFaceDataset
impl Unpin for HuggingFaceDataset
impl UnwindSafe for HuggingFaceDataset
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