There was a problem compiling the code from your notebook. Details: house_model() missing 1 required positional argument: 'x'

Hello @Phresh007 ,

I have checked your notebook.
You need to fix the following : -

  1. Don’t take parameters in the function house model which you have taken x. Basically you got error for this.
  2. 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
  1. 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.

  2. 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