Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upcallbacks in autoencoder #150
Comments
|
Thanks for noting me on this. I would be happy to add this in...while may take some time. You could overwrite the autoencoder module to get it for now... |
|
or maybe @ZainNasrullah can do this? |
|
Hi satrum and Yue, I added keyword arguments to the fit call on the autoencoder. This should allow you to pass any additional keras arguments including callbacks. I've also updated the auto encoder example to include your callback and no longer receive the type error mentioned in the initial post. Can you test this implementation (b401c32) and let me know if this is what you were looking for? If so, we'll include it in a future release. Update: Quick reminder to test in a virtual environment where pyod is not already installed (safest bet is to do a fresh install via github and the provided commit hash) or you may be running the existing implementation instead of the modified one. |
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.