I updated pip and keras library but this seem to happen. I checked Keras documentation, and validation_freq doesn't seem to work. Is there any fix?
model.fit_generator(generator=train_generator,
steps_per_epoch=steps_per_epoch,
epochs=epochs,
callbacks=[model_checkpoint, tensorboard_callback],
validation_data=validation_generator,
validation_steps=validation_steps,
validation_freq=[1, 2, 10])
Traceback (most recent call last): File "scripts/run_training.py", line 54, in validation_freq=[1, 2, 10]) File "/home/sherwin/.local/lib/python3.6/site-packages/keras/legacy/interfaces.py", line 91, in wrapper return func(*args, **kwargs) TypeError: fit_generator() got an unexpected keyword argument 'validation_freq'