You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we save each image into their own files. It would be nice to run a local webserver that renders them all into a single page so that people can inspect them and verify that they are all unambiguous.
I have a messy prototype that I set up for SVHN (adapted from a colab notebook)
In the evaluate_two_class_unambiguous_model function, dump a map from image_id => (logits, confidence, labels) to a .json file in the plot_confident_error_rate directory
Set up a minimal flask or node server that parses the json file
Set up the server to render the viewer using svelte (this should work out of the box)
Add installation instructions
The text was updated successfully, but these errors were encountered:
Currently we save each image into their own files. It would be nice to run a local webserver that renders them all into a single page so that people can inspect them and verify that they are all unambiguous.
I have a messy prototype that I set up for SVHN (adapted from a colab notebook)
https://gist.github.com/nottombrown/783b5553823f4c1b35395fdc144b96fa
Rough spec
evaluate_two_class_unambiguous_model
function, dump a map fromimage_id => (logits, confidence, labels)
to a.json
file in theplot_confident_error_rate
directoryjson
fileThe text was updated successfully, but these errors were encountered: