Skip to content

Commit

Permalink
rm print in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
EmanuelSommer committed Apr 23, 2024
1 parent 6997909 commit 01527f2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ def test_polynomial_regression_fitting(self):
y_pred = model.transform(self.x)
self.assertEqual(y_pred.shape, self.y.shape)
self.assertAlmostEqual(y_pred.mean(), self.y.mean(), places=1)
print(model.weight)
self.assertAlmostEqual(model.weight[0].item(), 0, places=0)
self.assertAlmostEqual(model.weight[1].item(), 2, places=0)
self.assertAlmostEqual(model.weight[2].item(), 5, places=0)
Expand Down

0 comments on commit 01527f2

Please sign in to comment.