Spaces:
Runtime error
Runtime error
Fix missing parenthesis
Browse files
app.py
CHANGED
@@ -92,7 +92,7 @@ if cost_function == 'RMSE-Loss':
|
|
92 |
# add a line to the plot
|
93 |
plt.plot(X[jnp.dot(X, w).argsort(), 1], jnp.dot(X, w).sort(), 'c--')
|
94 |
# Plot the final line
|
95 |
-
plt.plot(X[jnp.dot(X, w).argsort(), 1], jnp.dot(X, w).sort(), 'k-', label='Final line'
|
96 |
status_text.text('Done!')
|
97 |
|
98 |
|
|
|
92 |
# add a line to the plot
|
93 |
plt.plot(X[jnp.dot(X, w).argsort(), 1], jnp.dot(X, w).sort(), 'c--')
|
94 |
# Plot the final line
|
95 |
+
plt.plot(X[jnp.dot(X, w).argsort(), 1], jnp.dot(X, w).sort(), 'k-', label='Final line')
|
96 |
status_text.text('Done!')
|
97 |
|
98 |
|