Update app.py
Browse files
app.py
CHANGED
@@ -109,7 +109,7 @@ def generate_charts(ner_output_bin: dict) -> Tuple[go.Figure, np.ndarray]:
|
|
109 |
|
110 |
def generate_wordcloud(entities: List[Dict], color_map: Dict[str, str], image_path: str) -> np.ndarray:
|
111 |
|
112 |
-
image_path = os.path.join(os.path.dirname(__file__),
|
113 |
|
114 |
token_texts = []
|
115 |
token_scores = []
|
|
|
109 |
|
110 |
def generate_wordcloud(entities: List[Dict], color_map: Dict[str, str], image_path: str) -> np.ndarray:
|
111 |
|
112 |
+
image_path = os.path.join(os.path.dirname(__file__), image_path)
|
113 |
|
114 |
token_texts = []
|
115 |
token_scores = []
|