Hello @Phresh007 ,
I have checked your notebook.
You need to fix the following : -
- Don’t take parameters in the function house model which you have taken
x
. Basically you got error for this. - Don’t make changes apart from where it’s asked to write the code. Only add code in between this :
### START CODE HERE
...
...
...
###END CODE HERE
-
So remove whatever you did before and after the block. Like :
i. removing the code to return y which you wrote before ### START CODE HERE
ii. You returned a parameterised function house model. Remove parameters. -
Don’t write keras directly. Use
tf.keras
as we have only imported tf. And notebook is set up in such way, even if you import other libraries/packages, it won’t work.
Hop this helps.
With regards,
Nilosree Sengupta