mHCConnector.alpha is unused in its own forward() — applied externally in model.py #14
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
mHCConnector.alphais defined as a parameter (mhc.py:25) but never used inmHCConnector.forward(). The alpha scaling is applied externally inmodel.py:123:The connector's
forward()only usesself.Aandself.beta. Thealphaparameter exists but the connector itself doesn't use it.Impact
alphais a parameter of the connector but applied externallymHCConnectorstandalone, alpha won't be appliedAction needed
mHCConnector.forward(), ORalphafrom the connector and document it as an external concernFiles
tergent/mhc.py:25, 38-47tergent/model.py:123