diff --git a/36-dnn/count_words.py b/36-dnn/count_words.py index 93eb8aa..71426ce 100644 --- a/36-dnn/count_words.py +++ b/36-dnn/count_words.py @@ -3,9 +3,7 @@ # An implementation of deep learning for counting symbols Input: [10, 12, 10, 11, 2, 2, 2, 1, 1] Output: words=[2, 10, 1, 12, 11] counts=[3, 2, 2, 1, 1] (Not necessarily in this order) - -''' # noqa - +''' from __future__ import print_function from keras.models import Sequential from keras import layers, metrics