We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4670ab9 commit 6895b84Copy full SHA for 6895b84
lib/llm/src/preprocessor/media/decoders.rs
@@ -12,8 +12,11 @@ pub use image::ImageDecoder;
12
// Decoded media data (image RGB, video frames pixels, ...)
13
#[derive(Debug)]
14
pub struct DecodedMediaData {
15
+ #[allow(dead_code)] // used in followup MR
16
pub(crate) data: Vec<u8>,
17
18
pub(crate) shape: Vec<usize>,
19
20
pub(crate) dtype: String,
21
}
22
0 commit comments