SimronThapa / FSRN-CVPR2020

This codebase implements the system described in the paper: Dynamic Fluid Surface Reconstruction Using Deep Neural Network

Home Page:https://ivlab.cse.lsu.edu/FSRN_CVPR20.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Spelling mistake on line 221 of FSRN-RNN train.py

ahhays opened this issue · comments

I do not have git access to modify this code but line 221, should be changed from monitor = "val_loss" to monitor = "val loss",

the comma is necessary to run the code.

initial version

checkpoint = ModelCheckpoint(weight_filename,
                             monitor = "val_loss"
                             save_best_only = True,
                             save_weights_only = True)

corrected version

checkpoint = ModelCheckpoint(weight_filename,
                             monitor = "val_loss",
                             save_best_only = True,
                             save_weights_only = True)