File size: 404 Bytes
673bdce
 
 
 
 
 
93f465d
 
b48f7ea
 
 
 
 
673bdce
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()