update folder

This commit is contained in:
Iridoudou
2021-08-09 12:54:19 +08:00
parent 93538f4682
commit 000caa44e3
174 changed files with 10 additions and 2 deletions

View File

@ -0,0 +1,8 @@
import pickle
import numpy as np
a=pickle.load(open("./P01G01R01F0001T0064A0101_params.pkl",'rb'))
for key,value in a.items():
if key =='label':
print("{}: {}".format(key,value))
else:
print("{}: {}".format(key,np.array(value).shape))