-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2bd81f6
commit 3311f3f
Showing
3 changed files
with
13 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
from mlcolvar.cvs.committor.committor import test_committor | ||
from mlcolvar.cvs.committor.utils import test_compute_committor_weights, test_Kolmogorov_bias | ||
from mlcolvar.core.loss.committor_loss import test_smart_derivatives | ||
|
||
|
||
if __name__ == "__main__": | ||
test_committor() | ||
test_smart_derivatives() | ||
test_Kolmogorov_bias() | ||
test_smart_derivatives() | ||
test_compute_committor_weights() |
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
from mlcolvar.cvs.supervised.deeptda import test_deeptda_cv | ||
from mlcolvar.core.loss.tda_loss import test_tda_loss | ||
|
||
if __name__ == "__main__": | ||
test_deeptda_cv() | ||
test_tda_loss() |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from mlcolvar.data.graph.atomic import test_atomic_number_table | ||
from mlcolvar.data.graph.neighborhood import test_get_neighborhood | ||
|
||
if __name__ == '__main__': | ||
test_atomic_number_table() | ||
test_get_neighborhood() |