Update BERTopic/bertopic/representation/_base.py
Browse files
BERTopic/bertopic/representation/_base.py
CHANGED
|
@@ -10,7 +10,6 @@ class BaseRepresentation(BaseEstimator):
|
|
| 10 |
topic_model,
|
| 11 |
documents: pd.DataFrame,
|
| 12 |
c_tf_idf: csr_matrix,
|
| 13 |
-
top_n_words: int,
|
| 14 |
topics: Mapping[str, List[Tuple[str, float]]]
|
| 15 |
) -> Mapping[str, List[Tuple[str, float]]]:
|
| 16 |
""" Extract topics
|
|
|
|
| 10 |
topic_model,
|
| 11 |
documents: pd.DataFrame,
|
| 12 |
c_tf_idf: csr_matrix,
|
|
|
|
| 13 |
topics: Mapping[str, List[Tuple[str, float]]]
|
| 14 |
) -> Mapping[str, List[Tuple[str, float]]]:
|
| 15 |
""" Extract topics
|