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
CI installs dependencies, runs style checks (with the help of pre-commit that hooks black and pylint tools), tests code with pytest
and then makes build and pushes it to the Artifacts.
You can also check artifacts selecting job in actions, e.g.:
You can scroll down and see Artifacts section. If needed, you can download a .zip archive:
Task 5
Web Demo for the project:
Web Demo is created with help of streamlit library. It is a single page application that takes
image from a user and executes the demo code to draw the results in the browser.
You can find web_demo.py script in the /demo folder.
In order to run this app, install the package (use local version of /dist folder) and then type streamlit run web_demo.py in /demo folder.
Streamlit app will work at localhost:8501.
You can choose .png image on your own and upload it.
Docker image
First, you need to install Docker to your system.
Second, run docker build -t unet ./
After building, use the following command
docker run -p 8501:8501 unet
and you'll see a web demo at localhost:8501
Take into account, that you may need to run those commands as administrator, otherwise access will be denied.