You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue:
Incorrect weight parameter options['beta'] used in loss calculations.
Lines affected: 93 and 117.
Expected:
Use options['--weight-pl'] for weight in the loss calculations, as it's intended for center loss, not options['beta'], which is for entropy loss.
Details:
Line 93: generator_loss calculation.
Line 117: total_loss calculation.
Suggested Fix:
Replace options['beta'] with options['--weight-pl'] in the affected lines.
The text was updated successfully, but these errors were encountered:
File: train.py
Issue:
Incorrect weight parameter options['beta'] used in loss calculations.
Lines affected: 93 and 117.
Expected:
Use options['--weight-pl'] for weight in the loss calculations, as it's intended for center loss, not options['beta'], which is for entropy loss.
Details:
Suggested Fix:
Replace options['beta'] with options['--weight-pl'] in the affected lines.
The text was updated successfully, but these errors were encountered: