NameError Traceback (most recent call last)
in
2
3 # Get your trained model
----> 4 model = house_model()
in house_model()
12 # Define your model (should be a model with 1 dense layer and 1 unit)
13 # Note: you can use tf.keras instead of keras
—> 14 model = tf.keras.Sequential([keras.layers.Dense(units=1,input_shape=[1])])
15
16 # Compile your model