Spaces:
Build error
Build error
Upload 17 files (#13)
Browse files- Upload 17 files (9cc881e2db3d2b5e3d904c275326b2099ac6a29d)
- 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):
|