Skip to content

Error in human and garment pose training scripts #52

Description

@AnasKunda

There is a small bug in train.py script of human and garment pose models.

The bug is present in below lines:

for test_keypoints in test_dataloader:
            model.eval()
            test_predictions, _ = model(test_keypoints)

The correction should be:

for test_keypoints, _ in test_dataloader:
            model.eval()
            test_predictions, _ = model(test_keypoints)

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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