Skip to content

Commit

Permalink
Make INHERIT zero.
Browse files Browse the repository at this point in the history
  • Loading branch information
almaudoh committed Jan 8, 2023
1 parent 7292752 commit 8201edc
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions proto/net.proto
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ message NetworkFormat {
optional MovesLeftFormat moves_left = 6;

enum ActivationFunction {
NONE = 0;
INHERIT = 1;
INHERIT = 0;
NONE = 1;
RELU = 2;
MISH = 3;
TANH = 4;
Expand All @@ -253,14 +253,13 @@ message NetworkFormat {
optional DefaultActivation default_activation = 7;

enum SmolgenActivation {
SMOLGEN_ACTIVATION_NONE = 0;
SMOLGEN_ACTIVATION_INHERIT = 1;
SMOLGEN_ACTIVATION_INHERIT = 0;
SMOLGEN_ACTIVATION_SWISH = 7;
}
optional SmolgenActivation smolgen_activation = 8;

enum FfnActivation {
FFN_ACTIVATION_INHERIT = 1;
FFN_ACTIVATION_INHERIT = 0;
FFN_ACTIVATION_RELU_2 = 8;
}
optional FfnActivation ffn_activation = 9;
Expand Down

0 comments on commit 8201edc

Please sign in to comment.