saswatdas123 commited on
Commit
31833a1
Β·
verified Β·
1 Parent(s): 6e7e439

Create about.py

Browse files
Files changed (1) hide show
  1. pages/about.py +27 -0
pages/about.py ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+
4
+
5
+ st.set_page_config("About")
6
+
7
+ st.write("# Welcome to PatentGuru! πŸ‘‹")
8
+ st.sidebar.success("Select a demo above")
9
+
10
+ st.markdown(
11
+ """
12
+ PatentGuru is an patent search assistant built specifically for
13
+ building patents on any subject. The project uses data from Google patents covering a gamut of 1.3 mn granted patents
14
+ across all categories
15
+ **πŸ‘ˆ Select a demo from the dropdown on the left** to see some examples
16
+ of what PatentGuru can do!
17
+ ### Want to learn more about patents?
18
+ - Check out [United States Patent and Trademark office](https://www.uspto.gov/)
19
+ - Jump into the Open Source Documentation that was used for embedding [AI-Growth-Lab](https://huggingface.co/AI-Growth-Lab/PatentSBERTa)
20
+ - Ask a question in our [community
21
+ forums](https://discuss.streamlit.io)
22
+ ### See more on tensor flow datasets
23
+ - Use a tensor flow dataset to [analyze the patent categorization and abstract
24
+ Dataset](hhttps://www.tensorflow.org/datasets/catalog/big_patent)
25
+ - Explore a [European Patent Office](https://www.epo.org/en)
26
+ """
27
+ )