Skip to content

Commit

Permalink
alternative activation encoding (LeelaChessZero#1)
Browse files Browse the repository at this point in the history
* alternative activation encoding

* simplification

Co-authored-by: borg323 <[email protected]>
  • Loading branch information
borg323 and borg323 authored Jan 9, 2023
1 parent 8201edc commit 2e1d9cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions proto/net.proto
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,10 @@ message NetworkFormat {
optional MovesLeftFormat moves_left = 6;

enum ActivationFunction {
INHERIT = 0;
NONE = 1;
DEFAULT = 0;
MISH = 1;
RELU = 2;
MISH = 3;
NONE = 3;
TANH = 4;
SIGMOID = 5;
SELU = 6;
Expand Down

0 comments on commit 2e1d9cf

Please sign in to comment.