tfrecord 0.15.0

TFRecord de/serialize for TensorBoard
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! ProtocolBuffer types compiled from TensorFlow.
//!
//! The types are provided by ProtocolBuffer documents from TensorFlow repository.
//! They are used internally for {,de}serialization.

#[cfg(feature = "with-serde")]
include!(concat!(
    env!("CARGO_MANIFEST_DIR"),
    "/prebuild_src/tensorflow_with_serde.rs"
));

#[cfg(not(feature = "with-serde"))]
include!(concat!(
    env!("CARGO_MANIFEST_DIR"),
    "/prebuild_src/tensorflow_without_serde.rs"
));