Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
st.markdown(
|
4 |
+
'''
|
5 |
+
In the realm of patents, there's a place to be,\
|
6 |
+
A search engine that indexes them for you and me.\
|
7 |
+
[Google Patents](https://patents.google.com/) is its name,\
|
8 |
+
With keywords, numbers, and inventors, you'll find your claim.
|
9 |
+
|
10 |
+
From USPTO, EPO, and WIPO, it draws its lore,\
|
11 |
+
Abstracts, images, citations, it has much in store.\
|
12 |
+
So, venture forth, my friend, and see what you can find,\
|
13 |
+
In this patent world, where innovation's intertwined.
|
14 |
+
|
15 |
+
For those seeking knowledge of the U.S. patents' tale,\
|
16 |
+
The [USPTO Database](https://patft.uspto.gov/) will lift the veil.\
|
17 |
+
Full-text search capabilities, and images, you'll see,\
|
18 |
+
Uncover the inventions granted by the USPTO decree.
|
19 |
+
|
20 |
+
Title, abstract, claims, and more, search with ease,\
|
21 |
+
Inventors, assignees, classification codes, if you please.\
|
22 |
+
A wealth of information, in this database you'll find,\
|
23 |
+
A world of innovation, creativity combined.
|
24 |
+
|
25 |
+
The [EPO Espacenet](https://worldwide.espacenet.com/), a platform so grand,\
|
26 |
+
Over 120 million patent documents, at your command.\
|
27 |
+
EPO, USPTO, WIPO, and national offices too,\
|
28 |
+
A treasure trove of knowledge, waiting there for you.
|
29 |
+
|
30 |
+
Search with publication number, inventor, applicant, or code,\
|
31 |
+
Advanced features let you refine the search mode.\
|
32 |
+
Specific phrases or exclude terms, it's all within your reach,\
|
33 |
+
In Espacenet, a world of patents, there to teach.
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
๐ค๐งช๐
|
38 |
+
๐ฌ๐ง ๐ก: RLHF & LAFAND-MT โก๏ธ Efficient, accurate & flexible AI/ML systems
|
39 |
+
๐๐ฌ๐: Lambada benchmark โก๏ธ Advanced NLP & NLU understanding
|
40 |
+
๐๐๐: MNLI (Text Inference) vs MMLU (Multimodal Understanding)
|
41 |
+
๐๏ธ๐๐ค: AGI challenges โก๏ธ Generalization, computation, ethics
|
42 |
+
๐ต๏ธ๐๐งก: Interpretability, transparency & ethics in AI
|
43 |
+
๐๐ฎ๐ค: Reinforcement learning โก๏ธ Evolution & role in complex AI
|
44 |
+
๐ง๐๐: Limitations & future research for AGI
|
45 |
+
๐งฉ๐ค๐: Integrating AI architectures โก๏ธ Holistic & robust AI/ML systems
|
46 |
+
๐๐๐ผ: Promising applications & positive societal impact
|
47 |
+
๐ฉโ๐ป๐๐ง: Evolving role of AI/ML engineer & Chief Scientist
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
|
52 |
+
'''
|
53 |
+
)
|