Changeset b2e2cd0


Ignore:
Timestamp:
Dec 29, 2021, 5:51:58 PM (2 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/crepe
Children:
1cbd27c
Parents:
49ac607f
git-author:
Paul Brossier <piem@piem.org> (01/16/19 22:02:06)
git-committer:
Paul Brossier <piem@piem.org> (12/29/21 17:51:58)
Message:

[conv2d] remove relu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ai/conv2d.c

    r49ac607f rb2e2cd0  
    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.