nlptown / nlp-notebooks

A collection of notebooks for Natural Language Processing from NLP Town
http://www.nlp.town
950 stars 372 forks source link

tf.keras.utils.get_file... #1

Open weitzelleila opened 6 years ago

weitzelleila commented 6 years ago

tf.keras.utils.get_file... ot working any more

AntoineBD commented 6 years ago

Hi weitzelleila,

Try to install keras with the command line like this : pip install keras

Then, add in the script : import keras and change "tf.keras.utils.get_file(...)" to "keras.utils.get_file(...)".

It works for me