()
| 128 | |
| 129 | |
| 130 | def test_gradient_descent(): |
| 131 | for i in range(len(test_data)): |
| 132 | print(("Actual output value:", output(i, "test"))) |
| 133 | print(("Hypothesis output:", calculate_hypothesis_value(i, "test"))) |
| 134 | |
| 135 | |
| 136 | if __name__ == "__main__": |
no test coverage detected