-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ok, I think I've finally fixed the "training problem" with e2gmm and …
…related programs. The problem was 2-fold: The network adjacent to the latent space was expanding/contracting too slowly, allowing only a small number of weights to dominate. The major problem, however, is that while the relu activation function _can_ get stuck with zero outputs and an untrainable state in certain situations, particularly when the network is small. Using leaky_relu instead seems to avoid these issues and make more efficient use of the network.
- Loading branch information
Showing
2 changed files
with
22 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters