Shathe / Semantic-Segmentation-Tensorflow-Eager

An example of semantic segmentation using tensorflow in eager execution.
26 stars 3 forks source link

Results are strange #2

Closed rafaelmarconiramos closed 5 years ago

rafaelmarconiramos commented 5 years ago

Hi,

I executed your code, but the results are strange: epoch: 0 Train accuracy: None Test accuracy: None epoch: 1 Train accuracy: None Test accuracy: None ...... epoch: 18 Train accuracy: None Test accuracy: None epoch: 19 Train accuracy: None Test accuracy: None Total parameters of the net: 6421507 == 6.421507M

Why are all accuracies with none result?

Tks

Shathe commented 5 years ago

Yeah, your're right, when I edited the code, I unintentionally erase the "return" line on one method. It's been added haha, thanks for the feedback, it's working alright now!

Shathe commented 5 years ago

Try it and if it works, I'll close the issue. I expect everything is ok :)

rafaelmarconiramos commented 5 years ago

It worked. Thanks.