remicres / otbtf

Deep learning with otb (mirror of https://forgemia.inra.fr/remi.cresson/otbtf)
Apache License 2.0
159 stars 39 forks source link

there a loss value? #83

Open farissetiawan6 opened 2 years ago

farissetiawan6 commented 2 years ago

Hello, I want to ask. Is there a loss training and validation value in implementing deep learning CNN with otbtf? Is it just precision, recall, f-score and accuracy? Thanks

remicres commented 2 years ago

Hello @farissetiawan6

The loss value is implemented in the network graph. For instance if you take a look in this example you can see the loss.

Evaluation metrics are another thing. In OTBTF application, the usual classification metrics are implemented (precision, recall, accuracy for each class, for all, kappa, etc.).

farissetiawan6 commented 2 years ago

How can I see the network graph?

remicres commented 2 years ago

The graph is a concept in TensorFlow. You can check the TensorFlow documentation for more info