test_early_stopping
TestEarlyStopping
Bases: unittest.TestCase
Unit tests for EarlyStopping class.
Source code in uncertaintyplayground/tests/test_early_stopping.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
|
setUp()
Test fixture setup method.
Source code in uncertaintyplayground/tests/test_early_stopping.py
11 12 13 14 15 |
|
test_call()
Test case for call method in EarlyStopping.
Source code in uncertaintyplayground/tests/test_early_stopping.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
|
test_init()
Test case for EarlyStopping initialization.
Source code in uncertaintyplayground/tests/test_early_stopping.py
17 18 19 20 21 22 23 |
|