PhyllisPeh commited on
Commit
6906893
Β·
1 Parent(s): 659eed9

reduced number of patents

Browse files
Files changed (2) hide show
  1. README.md +20 -6
  2. requirements.txt +5 -7
README.md CHANGED
@@ -1,11 +1,25 @@
1
  ---
2
- title: PatentExplorerApp
3
- emoji: πŸ’‘
4
  colorFrom: blue
5
- colorTo: gray
6
- sdk: docker
 
 
7
  pinned: false
8
- short_description: AI-Powered 3D Mapping for Innovation Gaps
9
  ---
10
 
11
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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==0.28.1
5
- numpy==1.23.5
6
- pandas==1.5.3
7
- numba==0.56.4
8
  umap-learn==0.5.3
9
  plotly==5.3.1
10
- scikit-learn==1.3.0
11
- gunicorn==20.1.0
12
- werkzeug==2.0.3
 
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