()
| 28 | |
| 29 | |
| 30 | def test_linear(): |
| 31 | model = LinearRegression(lr=0.01, max_iters=2000, penalty="l2", C=0.003) |
| 32 | model.fit(X_train, y_train) |
| 33 | predictions = model.predict(X_test) |
| 34 | assert mean_squared_error(y_test, predictions) < 0.25 |
| 35 | |
| 36 | |
| 37 | def test_mlp(): |
nothing calls this directly
no test coverage detected