# number of classes
K = len(set(y_train))
# calculate total number of classes
# for output layer
print("number of classes:", K)
# Build the model using the functional API
# input layer
i =
編輯 # Python3 program to convert a
# decimal number to binary number
# function to convert
# decimal to binary
def decToBinary(n):
# array to store
# binary number