yzhao062/pyod

callbacks in autoencoder

Open

#150 opened on 2019年12月16日

GitHub で見る
 (6 comments) (0 reactions) (0 assignees)Python (1,308 forks)batch import
enhancementgood first issuehelp wanted

Repository metrics

Stars
 (7,762 stars)
PR merge metrics
 (平均マージ 4d 17h) (30d で 14 merged PRs)

説明

How can i implement callback parameter in fit moder Autoencoder ? There is not parameter.

from keras.callbacks.callbacks import EarlyStopping cb_earlystop = EarlyStopping(monitor='val_loss', min_delta=0, patience=0, verbose=0, mode='auto', baseline=None, restore_best_weights=False) pyod_model.fit(scaler, callbacks=[cb_earlystop])

TypeError: fit() got an unexpected keyword argument 'callbacks'

Can you implement this parameter? Its very usefull for monitor, early stop and another cases.

コントリビューターガイド