importtensorflowastffromtensorflow.keras.modelsimportSequentialfromtensorflow.keras.layersimportDense# Data dummy untuk ilustrasicomments=["Kerja bagus","Ini buruk"]labels=[1,0]# 1 untuk positif, 0 untuk negatifdefpreprocess(comment):return[len(word)forwordincomment.split()]X=tf.keras.preprocessing....