Skip to content

Commit

Permalink
Update model.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vb100 authored Mar 24, 2021
1 parent 04b91ca commit 68232d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions model.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def mse(y_test, y_pred):
# Create a model using the Sequential API
model = tf.keras.Sequential([
tf.keras.layers.Dense(1),
#tf.keras.layers.Dense(1)
tf.keras.layers.Dense(1)
])

# Compile the model
Expand All @@ -84,7 +84,7 @@ def mse(y_test, y_pred):
metrics = ['mae'])

# Fit the model
model.fit(X_train, y_train, epochs=50)
model.fit(X_train, y_train, epochs=100)


# Make and plot predictions for model_1
Expand Down

0 comments on commit 68232d4

Please sign in to comment.