readme syntax
Browse files
README.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# bolete
|
| 2 |
|
| 3 |
An information extraction and exploration app. Upload files with text. Bolete will then extract text, identify common keywords and entities, and create a simple search interface to explore the corpus.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Bolete
|
| 3 |
+
emoji: 💂
|
| 4 |
+
colorFrom: green
|
| 5 |
+
colorTo: red
|
| 6 |
+
sdk: streamlit
|
| 7 |
+
sdk_version: 1.11.1
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
license: mit
|
| 11 |
+
---
|
| 12 |
# bolete
|
| 13 |
|
| 14 |
An information extraction and exploration app. Upload files with text. Bolete will then extract text, identify common keywords and entities, and create a simple search interface to explore the corpus.
|
app.py
CHANGED
|
@@ -1,13 +1,9 @@
|
|
| 1 |
-
import re
|
| 2 |
import streamlit as st
|
| 3 |
import textract
|
| 4 |
import tempfile
|
| 5 |
-
import random
|
| 6 |
-
from pathlib import Path
|
| 7 |
import spacy
|
| 8 |
from spacy.tokens import DocBin
|
| 9 |
import srsly
|
| 10 |
-
from spacy.matcher import Matcher
|
| 11 |
|
| 12 |
st.title('Index and Search a Collection of Documents')
|
| 13 |
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
import textract
|
| 3 |
import tempfile
|
|
|
|
|
|
|
| 4 |
import spacy
|
| 5 |
from spacy.tokens import DocBin
|
| 6 |
import srsly
|
|
|
|
| 7 |
|
| 8 |
st.title('Index and Search a Collection of Documents')
|
| 9 |
|