jeffheaton / t81_558_deep_learning

T81-558: Keras - Applications of Deep Neural Networks @Washington University in St. Louis
https://sites.wustl.edu/jeffheaton/t81-558/
Other
5.71k stars 3.04k forks source link

Module 3 syntax mistake #121

Closed mikdvdv closed 2 years ago

mikdvdv commented 2 years ago

Thank you for your course! It is amazing! But I have found a little issue in the Module 3 In[11]:

# Sample predictions
for i in range(10):
    print(f"{i+1}. Car name: {cars[i]}, MPG: {y[i]}, " 
          + "predicted MPG: {pred[i]}")

f is missing, so the output has "pred[i]" in it I hope It helps.

jeffheaton commented 2 years ago

Thank you!