mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-25 02:32:59 +00:00
model_segmenter: we're no longer using sparse
This commit is contained in:
parent
9a2b4c6838
commit
8e23e9d341
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ def model_rainfallwater_segmentation(metadata, shape_water_out, model_arch="conv
|
||||||
model.compile(
|
model.compile(
|
||||||
optimizer="Adam",
|
optimizer="Adam",
|
||||||
loss=tf.keras.losses.CategoricalCrossentropy(),
|
loss=tf.keras.losses.CategoricalCrossentropy(),
|
||||||
metrics=[tf.keras.metrics.SparseCategoricalAccuracy()]
|
metrics=[tf.keras.metrics.CategoricalAccuracy()]
|
||||||
)
|
)
|
||||||
|
|
||||||
return model
|
return model
|
Loading…
Reference in a new issue