Changeset 8389694


Ignore:
Timestamp:
Jan 16, 2019, 10:02:06 PM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/crepe_org
Children:
ec3f4d63
Parents:
378852b
Message:

[conv2d] remove relu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ai/conv2d.c

    r378852b r8389694  
    293293        // apply bias
    294294        acc += bias;
    295         // compute RELU
    296         activations->data[k][jj + i] = MAX(acc, 0);
     295        // set output activation
     296        activations->data[k][jj + i] = acc;
    297297      }
    298298      stride_b += c->stride_shape[1];
Note: See TracChangeset for help on using the changeset viewer.