myshirk's picture
Update app.py
93f465d
raw
history blame
404 Bytes
import streamlit as st
def show_model():
return
def main():
st.title("Semantic Search for Datasets Using Sentence Transformers")
st.write("A case study for the National Centers for Environmental Information (NCEI)")
st.image("noaa_logo.png", width=150)
st.write("<b>Goal</b>: search for datasets in NCEI's Archive using natural language queries")
st.image("ncei_banner.png")
main()