Я начал изучать ML и нейронные сети для некоторого проекта колледжа, изучая, что я столкнулся с проблемой в коде, которую я не могу исправить.
import tensorflow as tf
import numpy as np
import matplotlib.pyplot as plt
from tensorflow import keras
data = keras.datasets.fashion_mnist
(train_images,train_labels),(test_images,test_labels) = data.load_data()
class_names = ['T-shirt/top', 'Trouser', 'Pullover', 'Dress', 'Coat', 'sandal', 'Shirt', 'sneaker',
'Bag', 'Ankle boot']
train_images = train_images/255.0
test_images = test_images/255.0
model = keras.Sequential([
keras.layers.Flatten(input_shape=(28,28)),
keras.layers.Dense(128, activation="relu"),
keras.layers.Dense(10, activation="softmax")
])
model.compile(optimizer="adam", loss="sparse_categorical_crossentropy", metrics=["accuracy"])
model.fit(train_images, train_labels, epochs=5)
test_loss, test_acc = model.evaluate(test_images, test_labels)
prediction = model.predict
print(class_names[np.argmax(prediction[4])])
Я получаю ошибку:
TypeError: объект 'method' недопустим.