fastpbrl icon indicating copy to clipboard operation
fastpbrl copied to clipboard

Vectorization techniques for fast population-based training.

Results 1 fastpbrl issues
Sort by recently updated
recently updated
newest added

You implement LayerNorm in VectorizedLinearLayer but the LayerNorm input is "self._out_features, self._population_size", which means that the eps in LayerNorm is self._population_size. Could you please explain why ? ```python self._layer_norm =...