Try a loss function that has higher values for errors near sea level
[?]
Jul 6, 2021, 11:48 AM
QMNTEX7P7FCFXDGERWFX556BVBYZXKJERGQ2GWT24ALQBXAELXTQCDependencies
- [2]
7ML3OFE7Model trainer: initial train and visualize thread pair (total crust mass; todo: altitude instead) - [3]
SJHJS463Model trainer: main function to open sdl window and launch second thread for actual training - [4]
CWOSQTC4Trust tensorflow's thread safety (it wasn't the cause of an earlier bug) - [*]
ZM2EMAZOStart doing python multi-module stuff properly
Change contents
- edit in trainmodel/src/model.py at line 28
def shore_focused_loss(y_true, y_pred):y_true = tf.math.asinh(y_true - 4.94e-4)y_pred = tf.math.asinh(y_pred - 4.94e-4)return tf.math.reduce_mean((y_true - y_pred) ** 2) - replacement in trainmodel/src/__main__.py at line 26
loss=keras.losses.MeanSquaredError()loss=model.shore_focused_loss