Solution: Lesson 3 Error @interact does not work in Kaggle

Hi Recently I found out solution of Jermy Howard Notebook

@interact(a=1.1, b=1.1, c=1.1)
def plot_quad(a, b, c):
plt.scatter(x,y)
plot_function(mk_quad(a,b,c), ylim=(-3,13))

you just need to do little update code from

from ipywidgets import inetract

to

from ipywidgets import *

1 Like