From 3412e6fe9515f3d06536bec43cfbd7f0434e8e3c Mon Sep 17 00:00:00 2001 From: Crista Lopes Date: Thu, 26 Dec 2019 10:36:45 -0800 Subject: [PATCH] Minor --- 36-dnn/count_words.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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