Spaces:
Sleeping
Sleeping
Commit
Β·
6906893
1
Parent(s):
659eed9
reduced number of patents
Browse files- README.md +20 -6
- requirements.txt +5 -7
README.md
CHANGED
@@ -1,11 +1,25 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
colorFrom: blue
|
5 |
-
colorTo:
|
6 |
-
sdk:
|
|
|
|
|
7 |
pinned: false
|
8 |
-
short_description: AI-Powered 3D Mapping for Innovation Gaps
|
9 |
---
|
10 |
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
title: Patent Explorer App
|
3 |
+
emoji: π
|
4 |
colorFrom: blue
|
5 |
+
colorTo: green
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: 4.12.0
|
8 |
+
app_file: app.py
|
9 |
pinned: false
|
|
|
10 |
---
|
11 |
|
12 |
+
# Patent Explorer App
|
13 |
+
|
14 |
+
This application allows you to explore and analyze patent landscapes using AI. It provides:
|
15 |
+
- Semantic search of patents
|
16 |
+
- 3D visualization of patent clusters
|
17 |
+
- AI-powered analysis of innovation opportunities
|
18 |
+
- Interactive exploration of patent data
|
19 |
+
|
20 |
+
## Setup Required
|
21 |
+
This app requires two API keys to function:
|
22 |
+
1. SERPAPI_API_KEY - for patent search
|
23 |
+
2. OPENAI_API_KEY - for AI analysis
|
24 |
+
|
25 |
+
Please add these as Secrets in your Space settings.
|
requirements.txt
CHANGED
@@ -1,12 +1,10 @@
|
|
1 |
flask==2.0.1
|
2 |
python-dotenv==0.19.0
|
3 |
requests==2.26.0
|
4 |
-
openai==
|
5 |
-
numpy==1.
|
6 |
-
pandas==1.5.3
|
7 |
-
numba==0.56.4
|
8 |
umap-learn==0.5.3
|
9 |
plotly==5.3.1
|
10 |
-
|
11 |
-
|
12 |
-
|
|
|
1 |
flask==2.0.1
|
2 |
python-dotenv==0.19.0
|
3 |
requests==2.26.0
|
4 |
+
openai==1.3.0
|
5 |
+
numpy==1.21.2
|
|
|
|
|
6 |
umap-learn==0.5.3
|
7 |
plotly==5.3.1
|
8 |
+
pandas==1.3.3
|
9 |
+
scikit-learn==0.24.2
|
10 |
+
python-dotenv==0.19.0
|