mirror of
https://github.com/correl/dejavu.git
synced 2024-11-23 19:19:53 +00:00
change the start of j val to 1
when j=0 ,i+j is alse equal to i,that will make so many same hashes from diffent songs
This commit is contained in:
parent
eefcf0991c
commit
7cc178444e
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ def generate_hashes(peaks, fan_value=DEFAULT_FAN_VALUE):
|
|||
fingerprinted = set() # to avoid rehashing same pairs
|
||||
|
||||
for i in range(len(peaks)):
|
||||
for j in range(fan_value):
|
||||
for j in range(1,fan_value):
|
||||
if (i + j) < len(peaks) and not (i, i + j) in fingerprinted:
|
||||
freq1 = peaks[i][IDX_FREQ_I]
|
||||
freq2 = peaks[i + j][IDX_FREQ_I]
|
||||
|
|
Loading…
Reference in a new issue