-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Where is the LSTM part in your code? After reading it, I think the following function is quite similar to the function of the LSTM part, right?
| def UpdateTileStatUF(TileStaByUF,UWL, UHL ,UWH, UHH): |
def UpdateTileStatUF(TileStaByUF,UWL, UHL ,UWH, UHH):
for i in range(len(TileStaByUF)):
TileStaByUF[i]=0
iL = int(math.floor(UWL / 256))
jL = int(math.floor(UHL / 144))
iH = int(math.floor(UWH / 256))
jH = int(math.floor(UHH / 144))
Flag = 0
if iH >= 5:
iH = 4
if jH >= 5:
jH = 4
for i in range(iL,iH+1):
for j in range(jL,jH+1):
TileStaByUF[j * 5 + i]=1Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels