tyiannak / multimodal_movie_analysis

A Python Library for Multimodal Analysis of Movies and Content-based Movie Recommendation
25 stars 8 forks source link

MINOR: Printing feature stats vector error #28

Closed GeorgeTouros closed 3 years ago

GeorgeTouros commented 3 years ago

In analyze_visual.analyze_visual.py, in line 397 the shape of the feature matrix is printed instead of the shape of the feature_stats vector. Change:

print('Shape of feature stats vector including'
      ' object features (after smoothing'
      ' object confidences): {}'.format(feature_matrix.shape))

to

print('Shape of feature stats vector including'
      ' object features (after smoothing'
      ' object confidences): {}'.format(feature_stats.shape))
pakoromilas commented 3 years ago

@GeorgeTouros absolutely right. Thank you! It's now fixed.