LTEnjoy commited on
Commit
a6b1107
·
verified ·
1 Parent(s): 5c9db02

Update demo/modules/search.py

Browse files
Files changed (1) hide show
  1. demo/modules/search.py +1 -1
demo/modules/search.py CHANGED
@@ -38,7 +38,7 @@ def plot(scores) -> None:
38
  scores: List of scores
39
  """
40
  plt.hist(scores, bins=100, density=True, alpha=0.6)
41
- plt.title('Distribution of similarity scores in the database', fontsize=15)
42
  plt.xlabel('Similarity score', fontsize=15)
43
  plt.ylabel('Density', fontsize=15)
44
 
 
38
  scores: List of scores
39
  """
40
  plt.hist(scores, bins=100, density=True, alpha=0.6)
41
+ plt.title('Distribution of similarity scores (top-ranked samples)', fontsize=15)
42
  plt.xlabel('Similarity score', fontsize=15)
43
  plt.ylabel('Density', fontsize=15)
44