via986
Results
2
comments of
via986
> I fixed some bugs and updated the article and GitHub code, can't recall if Kaggle notebook is updated. I would suggest to follow the article. You will also find...
@HypergeneticSpacekid i got almost same error in `mcp`, solved: replaced this line: ``` mcp = ModelCheckpoint(best_model_path, monitor='val_f1_metric', verbose=1, save_best_only=True, save_weights_only=False, mode='max', period=1) ``` to: ``` mcp = ModelCheckpoint(best_model_path, monitor='val_f1_metric', verbose=1,...