[Solved] Deep learning to predict the temperature

It sounds as if you’ve trained to a discrete classification, but you want continuous output. Switch your algorithm to do regression, rather than classification. Another possibility is to harness your last-layer output to interpolate. Use the weights given to the top choice and its strongest adjacent choice. For instance, if your classification gives 1 .01 … Read more