File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -266,7 +266,7 @@ def dot(self) -> pd.Series:
266
266
raise Exception ("To perform this function, both input Series must have the same length." )
267
267
master_matrix , duplicate_matrix = self ._get_tf_idf_matrices ()
268
268
# Calculate pairwise cosine similarities:
269
- pairwise_similarities = np .asarray (master_matrix .multiply (duplicate_matrix ).sum (axis = 1 )).squeeze ()
269
+ pairwise_similarities = np .asarray (master_matrix .multiply (duplicate_matrix ).sum (axis = 1 )).squeeze (axis = 1 )
270
270
return pd .Series (pairwise_similarities , name = 'similarity' , index = self ._master .index )
271
271
272
272
@validate_is_fit
@@ -662,7 +662,7 @@ def _is_series_of_strings(series_to_test: pd.Series) -> bool:
662
662
return False
663
663
elif series_to_test .to_frame ().applymap (
664
664
lambda x : not isinstance (x , str )
665
- ).squeeze ().any ():
665
+ ).squeeze (axis = 1 ).any ():
666
666
return False
667
667
return True
668
668
You can’t perform that action at this time.
0 commit comments