- fit
A function that let learns a model. It updates the weight of the model by input data and correct answer data.
fit(
x=None,
y=None,
batch_size=None,
epochs=1,
verbose='auto',
callbacks=None,
validation_split=0.0,
validation_data=None,
shuffle=True,
class_weight=None,
sample_weight=None,
initial_epoch=0,
steps_per_epoch=None,
validation_steps=None,
validation_batch_size=None,
validation_freq=1,
max_queue_size=10,
workers=1,
use_multiprocessing=False)
https://www.tensorflow.org/api_docs/python/tf/keras/Model#fit
'Deep Learning > Tensorflow' 카테고리의 다른 글
Layers-Sequential, input_shape, Flatten, Dense (0) | 2023.12.19 |
---|---|
GradientTape (0) | 2023.12.12 |
reduce_sum, cast, argmax, image_dataset_from_directory, one_hot, reduce_mean, assign_sub, boolean_mask, random.normal, zeros (0) | 2023.12.12 |
LSTM (0) | 2022.09.15 |
Keras-Preprocessing, One-hot encoding, Word Embedding , Modeling, Compile (0) | 2021.04.09 |