We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6581f58 commit ba88cb3Copy full SHA for ba88cb3
2 files changed
turftopic/models/cluster.py
@@ -389,5 +389,5 @@ def fit_transform_dynamic(
389
mask_terms[mask_terms == 0] = np.nan
390
components *= mask_terms
391
self.temporal_components_[i_timebin] = components
392
- self.temporal_importance_[i_timebin].append(topic_importances)
+ self.temporal_importance_[i_timebin] = topic_importances
393
return doc_topic_matrix
turftopic/models/gmm.py
@@ -197,5 +197,5 @@ def fit_transform_dynamic(
197
document_term_matrix[time_labels == i_timebin], # type: ignore
198
)
199
200
201
0 commit comments