I just wanted to hint towards something real quick and also for others to see
When running 'python app.py' in the terminal,
The error message "FileNotFoundError: [Errno 2] No such file or directory: './testdata/RealSet65/bears.jpg'" will appear. Because the referenced example image file does not exist in your repository.
To remedy this and to be able to run the web demo, one needs to delete line 135 in the app.py file.
So ['./testdata/RealSet65/bears.jpg', True, "SinSR", 12345], need to be deleted, since the image file is non-existent, otherwise the demo will not be able to start. After deleting this line, it will work :)
Hey, thank you for your work :)
I just wanted to hint towards something real quick and also for others to see When running 'python app.py' in the terminal, The error message "FileNotFoundError: [Errno 2] No such file or directory: './testdata/RealSet65/bears.jpg'" will appear. Because the referenced example image file does not exist in your repository.
To remedy this and to be able to run the web demo, one needs to delete line 135 in the app.py file. So ['./testdata/RealSet65/bears.jpg', True, "SinSR", 12345], need to be deleted, since the image file is non-existent, otherwise the demo will not be able to start. After deleting this line, it will work :)