Spaces:
Build error
Build error
Upload 17 files
#13
by
awinml
- opened
- app.py +1 -0
- utils/entity_extraction.py +2 -2
app.py
CHANGED
@@ -62,6 +62,7 @@ from utils.vector_index import (
|
|
62 |
create_sparse_embeddings,
|
63 |
hybrid_score_norm,
|
64 |
)
|
|
|
65 |
|
66 |
st.title("Question Answering on Earnings Call Transcripts")
|
67 |
|
|
|
62 |
create_sparse_embeddings,
|
63 |
hybrid_score_norm,
|
64 |
)
|
65 |
+
from utils import nltkmodules
|
66 |
|
67 |
st.title("Question Answering on Earnings Call Transcripts")
|
68 |
|
utils/entity_extraction.py
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
import re
|
2 |
-
|
3 |
from nltk.stem import PorterStemmer, WordNetLemmatizer
|
4 |
|
5 |
-
# Keyword
|
6 |
|
7 |
|
8 |
def expand_list_of_lists(list_of_lists):
|
|
|
1 |
import re
|
2 |
+
|
3 |
from nltk.stem import PorterStemmer, WordNetLemmatizer
|
4 |
|
5 |
+
# Keyword Extraction
|
6 |
|
7 |
|
8 |
def expand_list_of_lists(list_of_lists):
|