Skip to content

Instantly share code, notes, and snippets.

@d4l3k
Last active June 15, 2020 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save d4l3k/54fd9bcbcb8dd415c5e48376a1d2895d to your computer and use it in GitHub Desktop.
Save d4l3k/54fd9bcbcb8dd415c5e48376a1d2895d to your computer and use it in GitHub Desktop.
Autopilot neural network weights flatbuffer schema file from Tesla Model 3 - version 2018.32.6
namespace fbs.ap;
table Root {
layers : [Layer];
}
table Layer {
name: string;
weights : [Weights];
}
union Tensor {TensorF32, TensorI8, TensorI32}
table Weights {
dims: [uint32];
tensor: Tensor;
}
table TensorF32 {
data: [float32];
}
table TensorI32 {
data: [int32];
}
table TensorI8 {
data: [int8];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment