Last active
June 15, 2020 06:03
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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