“Sejarah plot keras” Kode Jawaban

Sejarah plot keras

import keras
from matplotlib import pyplot as plt
history = model1.fit(train_x, train_y,validation_split = 0.1, epochs=50, batch_size=4)
plt.plot(history.history['acc'])
plt.plot(history.history['val_acc'])
plt.title('model accuracy')
plt.ylabel('accuracy')
plt.xlabel('epoch')
plt.legend(['train', 'val'], loc='upper left')
plt.show()
Happy Hedgehog

Merencanakan Sejarah Pelatihan Model Keras

history = model.fit()
print(history.history.keys())

import matplotlib.pylab as plt
from matplotlib.pyplot import figure
figure(figsize=(8, 6))
plt.plot(history.history['loss'])
plt.plot(history.history['val_loss'])
plt.title('model loss')
plt.ylabel('loss')
plt.xlabel('epoch')
plt.legend(['train', 'test'], loc='upper left')
plt.show()
JJSSEECC

Jawaban yang mirip dengan “Sejarah plot keras”

Pertanyaan yang mirip dengan “Sejarah plot keras”

Lebih banyak jawaban terkait untuk “Sejarah plot keras” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya