diff options
author | Thomas Van Iseghem <[email protected]> | 2023-04-23 12:29:29 +0200 |
---|---|---|
committer | Thomas Van Iseghem <[email protected]> | 2023-04-23 12:29:29 +0200 |
commit | 039cce293a190b028f7013a9fbbcd999e2b348f1 (patch) | |
tree | a8217dbefcb15029cadcf48dfec0632bbda64059 /File-decryption/Capture.proto | |
parent | a4ec128f500754937f078177a35573b808b64d0e (diff) | |
download | OpenCortex-039cce293a190b028f7013a9fbbcd999e2b348f1.tar.gz OpenCortex-039cce293a190b028f7013a9fbbcd999e2b348f1.zip |
Renamed "Capture" to "File"-decryption and moved webapp to it
Diffstat (limited to 'File-decryption/Capture.proto')
-rw-r--r-- | File-decryption/Capture.proto | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/File-decryption/Capture.proto b/File-decryption/Capture.proto new file mode 100644 index 0000000..01e66ad --- /dev/null +++ b/File-decryption/Capture.proto @@ -0,0 +1,23 @@ +syntax = "proto3"; + +package captureProto; + +message Capture { + float sample_rate = 1; + uint32 pre_filter_length = 2; + uint32 post_filter_length = 3; + repeated float pre_filter_coefficients = 4; + repeated float post_filter_coefficients = 5; + float constant_pre_gain = 6; + float constant_post_gain = 7; + uint32 number_of_layers = 8; + repeated uint32 layer_sizes = 9; + repeated layerWeightsAndBiases weights_and_biases = 10; + float high_pass_frequency = 11; + float high_pass_bandwidth = 12; +} + +message layerWeightsAndBiases { + repeated float weights = 1; + repeated float biases = 2; +}
\ No newline at end of file |