dxdoan
dxdoan
@sunshineatnoon : Any update on this? Did it work for you? I seem to have the same issue. Nothing shows up on the graph, although the model appears to do...
@tjrileywisc I'm using Chrome. In the browser dev console's Network tab, besides the successful loads of js and css, I see a request for resource called end/ that's "pending" like...
@tjrileywisc I'm not sure if the problem is due to my model script and/or data itself. It runs over only 55 epoches, and it appears to complete them all fine....
Figured out the problem. In file api.py, line 35, the statement self.desc_map.iteritems() causes exception, since I use python 3. Changing it to self.desc_map.items() works.