Skip to content

About LSTM model #1

@EricPengShuai

Description

@EricPengShuai

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]=1

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions