由于某种原因,无法识别EarlyStopping回调中的start_from_epoch参数。
import tensorflow as tf
cbk = [tf.keras.callbacks.EarlyStopping(monitor='val_loss',
min_delta=0,
patience=3,
restore_best_weights = True,
start_from_epoch=10
)]
TypeError: __init__() got an unexpected keyword argument 'start_from_epoch'
即使它在documentation中清楚地作为参数列出
我安装了最新版本的TensorFlow,有人知道为什么会这样吗?
1条答案
按热度按时间pxy2qtax1#
我认为您使用的是
Tensorflow
的旧版本。!pip install -q tensorflow==2.11.0