data / dict.py
ms903's picture
Upload dict.py
223f967
raw
history blame contribute delete
251 Bytes
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)