We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64f3fb3 commit ae73e29Copy full SHA for ae73e29
tests/algorithms/test_funk_svd.py
@@ -7,14 +7,14 @@
7
8
class TestFunkSVD(unittest.TestCase):
9
def test_init_givenObjectInitialized_ObjectInitializedCorrectlyExpected(self):
10
- features = 10
+ features = 100
11
funk_svd = FunkSVD(features)
12
self.assertIsInstance(funk_svd, FunkSVD)
13
self.assertEqual(features, funk_svd.features)
14
15
def test_defaultConfigspace_GivenFunctionCalled_correctConfigSpaceReturnedExpected(self):
16
cs = FunkSVD.get_default_configspace()
17
- params = cs.get_hyperparameters()
+ params = list(cs.values())
18
self.assertIsInstance(cs, CS.ConfigurationSpace)
19
self.assertTrue(any(
20
param.name == "features" and param.default_value == 1000 and param.lower == 2 and param.upper == 10000 for
0 commit comments