Created
February 12, 2022 13:16
-
-
Save ashhadulislam/10593069ac1cbdf790f6e9fe9ca40487 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import streamlit as st | |
from lib import commons | |
def app(): | |
header=st.container() | |
with header: | |
st.subheader("Test whether an area is affected by any natural disaster") | |
proxy_img_file="data/joplin-tornado_00000001_post_disaster.png" | |
st.image(commons.load_image(proxy_img_file),width=250) | |
image_for_model=commons.image_loader(proxy_img_file) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment