This commit is contained in:
Crista Lopes
2019-12-26 10:36:45 -08:00
parent 7861836070
commit 3412e6fe95

View File

@@ -3,9 +3,7 @@
# An implementation of deep learning for counting symbols # An implementation of deep learning for counting symbols
Input: [10, 12, 10, 11, 2, 2, 2, 1, 1] 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) 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 __future__ import print_function
from keras.models import Sequential from keras.models import Sequential
from keras import layers, metrics from keras import layers, metrics