Skip to content

Validation data index is strange #7

@ghost

Description

File "model/src/dataset.py", line 32,
validation data X, Y is overlapped with train data X, Y.
I think it should be modified as follow.
X, Y = X[0 : int(0.2 * length) , :], Y[0 : int(0.2 * length), :]
=> X, Y = X[int(0.8 * length) : length, :], Y[int(0.8 * length) : length, :]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions