Changeset 591f077


Ignore:
Timestamp:
Jan 16, 2019, 11:44:07 PM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/crepe_org
Children:
1aa6eb8
Parents:
4d6a228
Message:

[pitch_crepe] reorder members, add comment

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/pitch/pitch_crepe.c

    r4d6a228 r591f077  
    6666  // layers
    6767  aubio_conv1d_t **conv_layers;
     68  aubio_batchnorm_t **batchnorm_layers;
    6869  aubio_maxpool1d_t **maxpool_layers;
    69   aubio_batchnorm_t **batchnorm_layers;
    7070  aubio_dense_t *dense_layer;
    7171  // input/output tensors
    7272  aubio_tensor_t *input_tensor;
     73  aubio_tensor_t **conv_output;
     74  aubio_tensor_t **batchnorm_output;
    7375  aubio_tensor_t **maxpool_output;
    74   aubio_tensor_t **batchnorm_output;
    75   aubio_tensor_t **conv_output;
    7676  aubio_tensor_t *flattened;
    7777  aubio_tensor_t *dense_output;
     
    494494  }
    495495
     496  // dense layer
    496497  {
    497498    char_t *key = "/classifier/classifier_3/kernel:0";
Note: See TracChangeset for help on using the changeset viewer.