4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

kerasのcallbackのEarlyStoppingの自分が勘違いをしていたところ

Last updated at Posted at 2019-11-22

#EarlyStoppingとは
監視する値の変化が停止した時に訓練を終了する。

参考:https://keras.io/callbacks/

#勘違いをしていたところ
EarlyStoppingの引数でpatiencebaselineについて勘違いしていた。
##patience
patienceは監視する値が改善しなくなってからpatienceの数内に改善が止まった値よりも改善しなかった場合学習を止める。

model.fit(... ,callbacks= EarlyStopping(monitor='val_loss',patience=3, verbose=1, min_delta=0,mode="auto"))
patienceが3の場合

Epoch1/100  val_loss = 1.0
Epoch2/100  val_loss = 1.5  epoch1と比較し改善していない。1回目
Epoch3/100  val_loss = 1.1  epoch1と比較し改善していない。2回目
Epoch4/100  val_loss = 1.2  epoch1と比較し改善していない。3回目
Epoch 00006: early stopping   止まる

##baseline
修正

翻訳
baseline:監視対象の数量が到達するためのベースライン値。モデルがベースラインを超えて改善を示さない場合、トレーニングは停止します。
引用:https://keras.io/callbacks/

よくわからない。

間違っているかもしれないのでご指摘をお願いします。

4
4
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?