Spaces:
Runtime error
Runtime error
File size: 649 Bytes
673bdce 93f465d b48f7ea a01266f 6415a43 a01266f 673bdce |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
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")
st.image("pres-whatisnoaa.png")
st.image("pres-onestop.png")
st.image("pres-problems.png")
st.image("pres-sentencetransformers.png")
st.image("pres-metadata.png")
st.image("pres-creatingse.png")
st.image("pres-futureplans.png")
main() |