- Timestamp:
- Jan 16, 2019, 11:44:07 PM (6 years ago)
- Branches:
- feature/crepe_org
- Children:
- 1aa6eb8
- Parents:
- 4d6a228
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/pitch/pitch_crepe.c
r4d6a228 r591f077 66 66 // layers 67 67 aubio_conv1d_t **conv_layers; 68 aubio_batchnorm_t **batchnorm_layers; 68 69 aubio_maxpool1d_t **maxpool_layers; 69 aubio_batchnorm_t **batchnorm_layers;70 70 aubio_dense_t *dense_layer; 71 71 // input/output tensors 72 72 aubio_tensor_t *input_tensor; 73 aubio_tensor_t **conv_output; 74 aubio_tensor_t **batchnorm_output; 73 75 aubio_tensor_t **maxpool_output; 74 aubio_tensor_t **batchnorm_output;75 aubio_tensor_t **conv_output;76 76 aubio_tensor_t *flattened; 77 77 aubio_tensor_t *dense_output; … … 494 494 } 495 495 496 // dense layer 496 497 { 497 498 char_t *key = "/classifier/classifier_3/kernel:0";
Note: See TracChangeset
for help on using the changeset viewer.