File size: 251 Bytes
223f967
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import numpy as np

a = np.load("pitch_aug_dict1.npy", allow_pickle=True).item()

b = np.load("pitch_aug_dict2.npy", allow_pickle=True).item()

#with open('val_dict2.txt','a') as file0:
    #print( a ,file=file0)

a.update(b)

np.save('merge.npy',a)