five modes duplication

This commit is contained in:
fangxiaoyu
2023-03-16 22:42:35 +08:00
commit a9f5451c36
34 changed files with 28042 additions and 0 deletions

19
test.py Normal file
View File

@@ -0,0 +1,19 @@
# Name:fang xiaoyu
# Time: 2023/3/9 22:07
import pickle
from utils.utils import *
path = "ScenarioA.pkl"
f = open(path , 'rb')
data = pickle.load(f)
print(len(data))
# import pickle as pkl
# f = open('ScenarioA.pkl', 'rb')
# b = pkl.load(f)
# b = list(b)
# b = np.array(b)
# print(b)