File size: 1,161 Bytes
f2302df
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import streamlit as st


st.set_page_config(
    page_title="Welcome!!!",
    page_icon="πŸ‘‹",
)

st.write("# Welcome to PatentGuru! πŸ‘‹")
st.sidebar.success("Select a demo above")

st.markdown(
    """
    PatentGuru is an patent search assistant built specifically for
    building patents on any subject. The project uses data from Google patents covering a gamut of 1.3 mn granted patents
    across all categories

    **πŸ‘ˆ Select a demo from the dropdown on the left** to see some examples
    of what PatentGuru can do!

    ### Want to learn more about patents?

    - Check out [United States Patent and Trademark office](https://www.uspto.gov/)
    - Jump into the Open Source Documentation that was used for embedding [AI-Growth-Lab](https://huggingface.co./AI-Growth-Lab/PatentSBERTa)
    - Ask a question in our [community
        forums](https://discuss.streamlit.io)

    ### See more on tensor flow datasets

    - Use a tensor flow dataset to [analyze the patent categorization and abstract
        Dataset](hhttps://www.tensorflow.org/datasets/catalog/big_patent)
    - Explore a [European Patent Office](https://www.epo.org/en)
"""
    )