-
Notifications
You must be signed in to change notification settings - Fork 0
/
simulator_astar.py
559 lines (483 loc) · 24.9 KB
/
simulator_astar.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
'''
# main net + subnet + no fly zone + astar
'''
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
import time
import os
import random
import logging
import numpy as np
from Area import Area
from drone import Drone
from collections import deque
random.seed(0)
np.random.seed(0)
class SimulatorAstar:
def __init__(self, batch = 1, time=350, mapSize=100, taskNum=15, trajectoryTime=70, taskTime=60, restrictStart=-1, restrctEnd=-1):
self.batch = batch
self.map_size = mapSize
self.time = time
self.task_num = taskNum
self.area = Area(mapSize=100, areaSize=3, areaNum=10)
self.trajectoryTime = trajectoryTime
self.taskTime = taskTime
self.restrictStart = restrictStart
self.restrctEnd = restrctEnd
self.start_time = 0
'''------------main net-----------------'''
# channels: mainTaskList[0] and mainTaskList[1] is launching location
# channels: mainTaskList[2] and mainTaskList[3] is landing location
# channels: mainTaskList[5] is launching time
# mainTaskList = (3000, 60, 15, 5)
self.mainTaskList = np.zeros(shape=(batch, taskTime, taskNum, 5), dtype=int)
# every timestep, number of uav on each grid
# used for generate density map (label) and init density (input)
self.trajectors = np.zeros(shape=(batch, trajectoryTime, mapSize, mapSize), dtype=int)
# subOutput = (3000, 60, 100, 100), tasklist as input for MainNet
self.subOutput = np.zeros(shape=(batch, taskTime, mapSize, mapSize), dtype=float)
# subOutputCube = (3000, 60, 100, 100), tasklist as input for MainNet, 3D cube
self.subOutputCube = np.zeros(shape=(batch, taskTime, mapSize, mapSize), dtype=int)
# Rnet input
self.Rfeature = np.zeros(shape=(batch, mapSize, mapSize, 2), dtype=np.float32)
# no fly zone
self.NFZ = np.zeros(shape=(batch, mapSize, mapSize))
'''------------sub net-----------------'''
# subTaskList = (3000*60, 15, 5), tasklist as input for SubNet
self.subTaskList = np.zeros(shape=(batch * taskTime, taskNum, 5), dtype=float)
# subLabel = (3000*60, 100, 100), as label for SubNet
self.subLabel = np.zeros(shape=(batch * taskTime, mapSize, mapSize), dtype=float)
self.counter = np.zeros(shape=(batch * taskTime, mapSize, mapSize), dtype=int)
self.startValue = 0.25
self.endValue = 0.75
'''------------statistic-----------------'''
self.totalFlyingTime = 0
self.totalUavNum = 0
if os.path.exists('./log.txt'):
os.remove('log.txt')
self.testArea = np.zeros(shape=(batch, mapSize, mapSize))
def generate(self):
for batch_idx in range(self.batch):
startTimeIter = time.time()
trajectors = np.zeros(shape=(self.time, self.map_size, self.map_size), dtype=int)
# self.drawPatten_horizontal_vertical(batch_idx)
# self.area.refresh(mapSize=self.map_size, areaSize=3, num=10)
self.area.refresh(batch=batch_idx)
start_time = random.choice(range(70, 80))
self.start_time = start_time
noFlyZone = self.area.getNoFlyZone()
x1, y1 = noFlyZone[0]
x3, y3 = noFlyZone[2]
self.NFZ[batch_idx, x1:x3, y1:y3] = 120
droneId=0
flyingDrones = deque()
# time iteration
for currentTime in range(self.time):
if (currentTime >= start_time + self.trajectoryTime):
break
# iterate and move all flying drones
tmpQue = deque()
while len(flyingDrones) > 0:
drone = flyingDrones.popleft()
drone.move(currentTime)
if not drone.isArrived():
tmpQue.append(drone)
flyingDrones = tmpQue
# task iteration
startPositions = self.area.getLaunchPoint(n=self.task_num)
for task_idx, task_val in zip(range(len(startPositions)), startPositions):
startRow, startCol, launchingRate = task_val
time_idx = -1
if currentTime >= start_time + 10 and currentTime < start_time + 10 + self.taskTime:
time_idx = currentTime - (start_time + 10)
self.mainTaskList[batch_idx,time_idx,task_idx,4] = currentTime
self.subTaskList[batch_idx*60+time_idx, task_idx, 4] = currentTime
startRow = int(startRow)
startCol = int(startCol)
succ = np.random.uniform(0,1) <= launchingRate
if self.restrictStart != -1 :
succ = succ and (currentTime < (start_time + 10) or (start_time + self.restrictStart + 10) <= currentTime)
if self.restrctEnd != -1 :
succ = succ and currentTime < (start_time + self.restrctEnd+10)
if trajectors[currentTime, startRow, startCol] > 0:
succ = False
# if there is a launching UAV
if succ:
self.totalUavNum += 1
endRow, endCol = self.area.getDestination()
droneId += 1
drone = Drone(id=droneId, launch_row=startRow, launch_col=startCol, landing_row=endRow, landing_col=endCol,
trajectors=trajectors, noflyzone=noFlyZone)
flyingDrones.append(drone)
self.Rfeature[batch_idx, startRow, startCol, 0] = launchingRate
self.Rfeature[batch_idx, endRow, endCol, 0] = 0.3
# whether current time is in task time interval
isInterval = True if currentTime >= start_time + 10 and currentTime < start_time + 10 + self.taskTime else False
path = []
pathLen = []
if isInterval:
self.mainTaskList[batch_idx,time_idx,task_idx,0] = startRow
self.mainTaskList[batch_idx,time_idx,task_idx,1] = startCol
self.mainTaskList[batch_idx,time_idx,task_idx,2] = endRow
self.mainTaskList[batch_idx,time_idx,task_idx,3] = endCol
# [ and ]
if noFlyZone[0, 1] <= startCol <= noFlyZone[2, 1] and noFlyZone[0, 1] <= endCol <= noFlyZone[2, 1]:
path, pathLen = self.verticalRouting(startRow, startCol, endRow, endCol, noFlyZone)
trajectors = self.threeStageRouting(path, pathLen, currentTime, batch_idx, time_idx, isInterval, trajectors)
# |冖| and |_|
elif noFlyZone[0, 0] <= startRow <= noFlyZone[2, 0] and noFlyZone[0, 0] <= endRow <= noFlyZone[2, 0] :
path, pathLen = self.horizontalRouting(startRow, startCol, endRow, endCol, noFlyZone)
trajectors = self.threeStageRouting(path, pathLen, currentTime, batch_idx, time_idx, isInterval, trajectors)
# modify routing
else:
def isHorizontalCross():
if not noFlyZone[0, 0] <= startRow <= noFlyZone[2, 0]:
return False
uav_left = min(startCol, endCol)
uav_right = max(startCol, endCol)
nfz_left = noFlyZone[0,1]
nfz_right = noFlyZone[1,1]
if uav_left <= nfz_left <= uav_right <= nfz_right:
return True
if nfz_left <= uav_left <= nfz_right <= uav_right:
return True
if uav_left <= nfz_left < nfz_right <= uav_right:
return True
return False
def isVerticalCross():
if not noFlyZone[0,1] <= endCol <= noFlyZone[2,1]:
return False
uav_up = min(startRow, endRow)
uav_down = max(startRow, endRow)
nfz_up = noFlyZone[0,0]
nfz_down = noFlyZone[2,0]
if uav_up <= nfz_up < nfz_down <= uav_down:
return True
return False
if isHorizontalCross() or isVerticalCross():
# vertically move first, horizontally move second
trajectors = self.vertical_horizontal(startRow, startCol, endRow, endCol, currentTime, trajectors)
if isInterval:
self.sliceTaskMap(batch_idx, time_idx, task_idx, startRow, startCol, endRow, endCol, horizontal=False)
else:
# horizontally move first, vertically move second
trajectors = self.horizontal_vertical(startRow, startCol, endRow, endCol, currentTime, trajectors)
if isInterval:
self.sliceTaskMap(batch_idx, time_idx, task_idx, startRow, startCol, endRow, endCol, horizontal=True)
self.trajectors[batch_idx] = trajectors[start_time:start_time+self.trajectoryTime]
logging.info('End {0} iteration, cost {1}'.format(batch_idx, time.time() - startTimeIter))
print('End {0} iteration, cost {1}\n'.format(batch_idx, time.time() - startTimeIter))
logging.info('{0} batch, start time {1}\n'.format(batch_idx, start_time))
self.subLabel = np.nan_to_num(self.subLabel / self.counter)
for b in range(self.batch):
for t in range(self.taskTime):
self.subOutput[b, t] = self.subLabel[b*self.taskTime+t]
def horizontal_vertical(self, startRow, startCol, endRow, endCol, currentTime, trajectors):
remainingTime = self.time - currentTime
if remainingTime >= abs(startCol-endCol)+1 :
# enough time for horizontal
if startCol < endCol :
r = np.arange(startCol, endCol+1)
else:
r = np.arange(endCol, startCol+1)[::-1]
else:
# not enough time for horizontal
if startCol < endCol:
r = np.arange(startCol, startCol+remainingTime)
else:
r = np.arange(startCol-remainingTime+1, startCol+1)[::-1]
t1 = np.arange(currentTime, currentTime+len(r))
# trajectors[t1,startRow,r] += 1
remainingTime -= len(r)
self.totalFlyingTime += len(r)
if remainingTime > 0 :
# exists time for vertical
if remainingTime >= abs(startRow-endRow) :
# enough time for vertical
if startRow < endRow:
c = np.arange(startRow+1, endRow+1)
else:
c = np.arange(endRow, startRow)[::-1]
else:
# not enough time for vertical
if startRow < endRow:
c = np.arange(startRow+1, startRow+remainingTime+1)
else:
c = np.arange(startRow-remainingTime, startRow)[::-1]
t2 = np.arange(t1[-1]+1, t1[-1] + len(c)+1)
# trajectors[t2, c, endCol] += 1
self.totalFlyingTime += len(c)
return trajectors
def vertical_horizontal(self, startRow, startCol, endRow, endCol, currentTime, trajectors):
remainingTime = self.time - currentTime
if remainingTime >= abs(startRow-endRow)+1 :
# enough time for vertical
if startRow < endRow:
c = np.arange(startRow, endRow+1)
else:
c = np.arange(endRow, startRow+1)[::-1]
else:
# not enough time for vertical
if startRow < endRow:
c = np.arange(startRow, startRow+remainingTime)
else:
c = np.arange(startRow-remainingTime+1, startRow+1)[::-1]
t1 = np.arange(currentTime, currentTime+len(c))
# trajectors[t1,c,startCol] += 1
remainingTime -= len(c)
self.totalFlyingTime += len(c)
if remainingTime > 0 :
if remainingTime >= abs(startCol-endCol) :
# enough time for horizontal
if startCol < endCol :
r = np.arange(startCol+1, endCol+1)
else:
r = np.arange(endCol, startCol)[::-1]
else:
# not enough time for horizontal
if startCol < endCol:
r = np.arange(startCol+1, startCol+remainingTime+1)
else:
r = np.arange(startCol-remainingTime, startCol)[::-1]
t2 = np.arange(t1[-1]+1, t1[-1] + len(r)+1)
# trajectors[t2,endRow,r] += 1
remainingTime -= len(r)
self.totalFlyingTime += len(r)
return trajectors
def drawPatten_horizontal_vertical(self, batch_idx):
startPositions = self.area.getLaunchPoint()
for startRow, startCol, _ in startPositions:
for endRow, endCol in self.area.getDestination(allPoints=True):
startRow, startCol = int(startRow), int(startCol)
endRow, endCol = int(endRow), int(endCol)
if startCol < endCol :
r = np.arange(startCol, endCol+1)
else:
r = np.arange(endCol, startCol+1)[::-1]
self.Rfeature[batch_idx, startRow, r, 1] = 1
if startRow < endRow:
c = np.arange(startRow+1, endRow+1)
else:
c = np.arange(endRow, startRow)[::-1]
self.Rfeature[batch_idx, c, endCol, 1] = 1
def drawPatten_vertical_horizontal(self, batch_idx):
startPositions = self.area.getLaunchPoint()
for startRow, startCol, _ in startPositions:
for endRow, endCol in self.area.getDestination(allPoints=True):
startRow, startCol = int(startRow), int(startCol)
endRow, endCol = int(endRow), int(endCol)
if startRow < endRow:
c = np.arange(startRow, endRow+1)
else:
c = np.arange(endRow, startRow+1)[::-1]
self.Rfeature[batch_idx, c, startCol] = 1
if startCol < endCol :
r = np.arange(startCol+1, endCol+1)
else:
r = np.arange(endCol, startCol)[::-1]
self.Rfeature[batch_idx, endRow, r] = 1
# gnerate subnet label without no fly zone routing
def sliceTaskMap(self, batch_idx, time_idx, task_idx, startRow, startCol, endRow, endCol, horizontal=False):
i = batch_idx*60 + time_idx
self.subTaskList[i, task_idx, 0] = startRow
self.subTaskList[i, task_idx, 1] = startCol
self.subTaskList[i, task_idx, 2] = endRow
self.subTaskList[i, task_idx, 3] = endCol
# compute each step value
pathLen = abs(startRow-endRow) + abs(endCol-startCol) + 1
step = (self.endValue-self.startValue)/(pathLen-1)
steps = np.around(np.arange(start=self.startValue, stop=self.endValue+step, step=step), 2)
if horizontal:
if startCol < endCol :
r = np.arange(startCol, endCol+1)
else:
r = np.arange(endCol, startCol+1)[::-1]
# self.subLabel[i, task_idx, startRow, r] += 1
self.subLabel[i, startRow, r] += steps[np.arange(0, len(r))]
self.counter[i, startRow, r] += 1
stepIndex = len(r)
# cube subouput
if time_idx+stepIndex >= 60:
t1 = np.arange(time_idx, 60)
else:
t1 = np.arange(time_idx, time_idx+stepIndex)
for ti, ri in zip(t1, r):
self.subOutputCube[batch_idx,ti,startRow,ri] += 1
if startRow < endRow:
c = np.arange(startRow+1, endRow+1)
else:
c = np.arange(endRow, startRow)[::-1]
# self.subLabel[i, task_idx, c, endCol] += 1
self.subLabel[i, c, endCol] += steps[np.arange(stepIndex, stepIndex+len(c))]
self.counter[i, c, endCol] += 1
# cube subouput
if t1[-1] < 60:
if t1[-1] + len(c)+1 >= 60:
t2 = np.arange(t1[-1]+1, 60)
else:
t2 = np.arange(t1[-1]+1, t1[-1] + len(c)+1)
for ti, ci in zip(t2, c):
self.subOutputCube[batch_idx,ti,ci,endCol] += 1
else:
if startRow < endRow:
c = np.arange(startRow, endRow+1)
else:
c = np.arange(endRow, startRow+1)[::-1]
# self.subLabel[i, task_idx, c, endCol] += 1
self.subLabel[i, c, startCol] += steps[np.arange(0, len(c))]
self.counter[i, c, startCol] += 1
stepIndex = len(c)
# cube subouput
if time_idx+stepIndex >= 60:
t1 = np.arange(time_idx, 60)
else:
t1 = np.arange(time_idx, time_idx+stepIndex)
for ti, ci in zip(t1, c):
self.subOutputCube[batch_idx,ti,ci,startCol] += 1
if startCol < endCol :
r = np.arange(startCol+1, endCol+1)
else:
r = np.arange(endCol, startCol)[::-1]
# self.subLabel[i, task_idx, startRow, r] += 1
self.subLabel[i, endRow, r] += steps[np.arange(stepIndex, stepIndex+len(r))]
self.counter[i, endRow, r] += 1
# cube subouput
if t1[-1] < 60:
if t1[-1] + len(r)+1 >= 60:
t2 = np.arange(t1[-1]+1, 60)
else:
t2 = np.arange(t1[-1]+1, t1[-1] + len(r)+1)
for ti, ri in zip(t2, r):
self.subOutputCube[batch_idx,ti,endRow,ri] += 1
# avoid no fly zone with routing |冖| or |_|
def horizontalRouting(self, sr, sc, er, ec, noFlyZone):
R1 = noFlyZone[0, 0]
R2 = noFlyZone[2, 0]
upLen = abs(sr - R1) + abs(er - R1)
downLen = abs(sr - R2) + abs(er - R2)
lowCol, highCol = min(sc, ec), max(sc, ec)
orderCol = 1 if sc < ec else -1
path = []
pathLen = []
if upLen < downLen:
path = [
[np.arange(sr, R1-1, -1), sc],
[R1-1, np.arange(lowCol, highCol+1)[::orderCol]],
[np.arange(R1, er+1), ec]
]
pathLen = [abs(sr-R1)+1, abs(lowCol-highCol)+1, +abs(er-R1)+1]
else:
path = [
[np.arange(sr, R2+1), sc],
[R2+1, np.arange(lowCol, highCol+1)[::orderCol]],
[np.arange(R2, er-1, -1), ec]
]
pathLen = [abs(sr-R2)+1, abs(lowCol-highCol)+1, +abs(er-R2)+1]
return path, pathLen
# avoid no fly zone with routing [ or ]
def verticalRouting(self, sr, sc, er, ec, noFlyZone):
C1 = noFlyZone[0, 1]
C2 = noFlyZone[2, 1]
leftLen = abs(sc - C1) + abs(ec - C1)
rightLen = abs(sc - C2) + abs(ec - C2)
lowRow, highRow = min(sr, er), max(sr, er)
orderRow = 1 if sr < er else -1
path = []
pathLen = []
if leftLen < rightLen:
path = [
[sr, np.arange(sc, C1-1, -1)],
[np.arange(lowRow, highRow+1)[::orderRow], C1-1],
[er, np.arange(C1, ec+1)]
]
pathLen = [abs(sc-C1)+1, abs(lowRow-highRow)+1, abs(ec-C1)+1]
else:
path = [
[sr, np.arange(sc, C2+1)],
[np.arange(lowRow, highRow+1)[::orderRow], C2],
[er, np.arange(C2, ec-1, -1)]
]
pathLen = [abs(sc-C2)+1, abs(lowRow-highRow)+1, abs(ec-C2)+1]
return path, pathLen
# draw various paths after avoided no fly zone
def threeStageRouting(self, path, pathLen, currentTime, batch_idx, time_idx, isInterval, trajectors):
# tranjector
t1 = np.arange(currentTime, currentTime+pathLen[0])
t2 = np.arange(t1[-1]+1, t1[-1]+pathLen[1]+1)
t3 = np.arange(t2[-1]+1, t2[-1]+pathLen[2]+1)
# trajectors[t1, path[0][0], path[0][1]] += 1
# trajectors[t2, path[1][0], path[1][1]] += 1
# trajectors[t3, path[2][0], path[2][1]] += 1
if isInterval:
# subnet
i = batch_idx*60 + time_idx
totalLen = sum(pathLen)
step = (self.endValue-self.startValue)/(totalLen-1)
steps = np.around(np.arange(self.startValue, self.endValue+step, step), 2)
self.subLabel[i, path[0][0], path[0][1]] += steps[np.arange(0, pathLen[0])]
self.counter[i, path[0][0], path[0][1]] += 1
self.subLabel[i, path[1][0], path[1][1]] += steps[np.arange(pathLen[0], sum(pathLen[:2]))]
self.counter[i, path[1][0], path[1][1]] += 1
self.subLabel[i, path[2][0], path[2][1]] += steps[np.arange(sum(pathLen[:2]), sum(pathLen))]
self.counter[i, path[2][0], path[2][1]] += 1
# cube subouput
ts1 = np.arange(time_idx, time_idx+pathLen[0])
ts2 = np.arange(ts1[-1]+1, ts1[-1]+pathLen[1]+1)
ts3 = np.arange(ts2[-1]+1, ts2[-1]+pathLen[2]+1)
tmp = np.zeros(shape=(self.map_size*2, self.map_size, self.map_size), dtype=int)
tmp[ts1, path[0][0], path[0][1]] += 1
tmp[ts2, path[1][0], path[1][1]] += 1
tmp[ts3, path[2][0], path[2][1]] += 1
self.subOutputCube[batch_idx] += tmp[:60, :]
# Rnet
# self.Rfeature[batch_idx, path[0][0], path[0][1], 1] = 1
# self.Rfeature[batch_idx, path[1][0], path[1][1], 1] = 1
# self.Rfeature[batch_idx, path[2][0], path[2][1], 1] = 1
return trajectors
def image(self):
trajector = self.trajectors[:15]
# trajector = self.subOutputCube[:10]
trajector = np.sum(trajector, axis=1)
nfz = self.NFZ[:15]
areas = nfz + trajector
# areas = trajector
# fig, axs = plt.subplots(1, 10, figsize=(40, 6))
# for ax, title, area in zip(axs, ['trajector', 'subLabel', 'counter', 'Rfeature'],
# [trajector, subLabel, counter, Rfeature]):
for i in range(areas.shape[0]):
area = areas[i]
plt.imshow(area, cmap=plt.cm.gnuplot)
# plt.get_xaxis().set_visible(False)
# plt.get_yaxis().set_visible(False)
plt.savefig("img/test_{0}.png".format(i))
if __name__ == "__main__":
timeCount = time.time()
s = SimulatorAstar(batch=20, mapSize=100)
s.generate()
s.image()
# print('\ntotal cost {0}'.format(time.time() - timeCount))
# print("\n--------SubNet--------")
# print('subTaskList: {0}'.format(s.subTaskList.shape))
# print('subLabel: {0}'.format(s.subLabel.shape))
# print('counter: {0}'.format(s.counter.shape))
# print("--------MainNet--------")
# print('mainTaskList: {0}'.format(s.mainTaskList.shape))
# print('trajectors: {0}'.format(s.trajectors.shape))
# print('subOutput : {0}'.format(s.subOutput.shape))
# print('Rfeature: {0}'.format(s.Rfeature.shape))
print('----- trajector -----')
# print(np.max(s.trajectors))
# print(np.min(s.trajectors))
# print('----- subOutput -----')
# print(np.max(s.subOutput))
# print(np.min(s.subOutput))
# print('----- Rfeature -----')
# print(np.max(s.Rfeature))
# print(np.min(s.Rfeature))
# np.save('../../../data/zzhao/uav_regression/{0}/{1}.npy'.format('test', 'mainTaskList'), s.mainTaskList)
# np.save('../../../data/zzhao/uav_regression/{0}/{1}.npy'.format('test', 'trajectors'), s.trajectors)
# np.save('../../../data/zzhao/uav_regression/{0}/{1}.npy'.format('test', 'Rfeature'), s.Rfeature)
# np.save('../../../data/zzhao/uav_regression/{0}/{1}.npy'.format('test', 'subTaskList'), s.subTaskList)
# np.save('../../../data/zzhao/uav_regression/{0}/{1}.npy'.format('test', 'subLabel'), s.subLabel)
# np.save('../../../data/zzhao/uav_regression/{0}/{1}.npy'.format('test', 'counter'), s.counter)