Spaces:
Running
Running
aethor commited on
init
Browse files- README.md +4 -4
- app.py +3 -0
- requirements.txt +1 -0
README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
| 1 |
---
|
| 2 |
title: Renard Demo
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 5.38.0
|
| 8 |
app_file: app.py
|
| 9 |
-
pinned:
|
| 10 |
license: gpl-3.0
|
| 11 |
short_description: Extract a character network from text
|
| 12 |
---
|
|
|
|
| 1 |
---
|
| 2 |
title: Renard Demo
|
| 3 |
+
emoji: 🦊
|
| 4 |
+
colorFrom: orange
|
| 5 |
+
colorTo: white
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 5.38.0
|
| 8 |
app_file: app.py
|
| 9 |
+
pinned: true
|
| 10 |
license: gpl-3.0
|
| 11 |
short_description: Extract a character network from text
|
| 12 |
---
|
app.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import runpy
|
| 2 |
+
|
| 3 |
+
runpy.run_module("renard.ui")
|
requirements.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
git+https://github.com/CompNet/Renard.git@dev#egg=renard-pipeline[ui]
|