Skip to content

Error in the training code #14

@Xu-Yao

Description

@Xu-Yao

The training code in trainer.py line 180 (features = [None]*k + [fea] + [None]*(17-k))should be modified as:

if training_mode:
    features = None
else:
    features = [None]*k + [fea] + [None]*(17-k)

I have received an email that identifies this problem and proposes a modification. This modifications has no impact at test time but do impact the training. Without this the model is not trained on two inversions.

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