Caleydo / confusionflow-ui

Visualize learning dynamics in multi-class image classifiers (e.g., convolutional neural networks) 💬 @gfrogat @thinkh
https://confusionflow.org
BSD 3-Clause "New" or "Revised" License
1 stars 0 forks source link

add refresh button for querying for new runs without completely reloading app #227

Open gfrogat opened 5 years ago

gfrogat commented 5 years ago

currently you have to reload the website to get new run and thereby loose the complete app state 😕

thinkh commented 5 years ago

You mean, when adding new run JSON files to the backend, they should be available in the select2?

thinkh commented 5 years ago

In the simplist case the refresh button can load the run list and replace it in the frontend. A more sophisticated option would be a websocket connect and receiving new runs via "push" event. In my opinion we should keep it simple. ;-)

gfrogat commented 5 years ago

yes, querying the run endpoint and updating the select2 would be enough.

websockets would be nice for live-updates but we already iceboxed that idea some time ago.