forked from deepmodeling/deepmd-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(tf): improve the activation setting in tebd (deepmodeling#3971)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Added logging to notify users when multiple neurons are used with a "linear" activation function, equivalent to a single linear layer. - **Configuration Updates** - Introduced `"activation_function": "linear"` in various neural network configuration files (`input.json`). - Added `"activation_function": "tanh"` in the `input.json` file for water model configuration. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
- Loading branch information
Showing
5 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
"neuron": [ | ||
8 | ||
], | ||
"activation_function": "linear", | ||
"precision": "float32" | ||
}, | ||
"descriptor": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
"neuron": [ | ||
8 | ||
], | ||
"activation_function": "linear", | ||
"precision": "float32" | ||
}, | ||
"descriptor": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ | |
"neuron": [ | ||
8 | ||
], | ||
"activation_function": "linear", | ||
"precision": "float32" | ||
}, | ||
"qm_model": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
4, | ||
8 | ||
], | ||
"activation_function": "tanh", | ||
"resnet_dt": false, | ||
"precision": "float64", | ||
"seed": 1 | ||
|