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
Might be good to have a single autoencoder class that is completely customizable (i.e. you can not only configure the layer parameters, but also change the layer type).
Solution
The tentative solution:
from .baseimportBaseLayerParamsfrom .baseimportBaseAutoencoderclassMutableLayerParams(BaseLayerParams):
passclassMutableAutoencoder(BaseAutoencoder):
pass
The text was updated successfully, but these errors were encountered:
Might be interesting to a have a method called mutate() that changes the layer parameters/type in a meaningful way in order to "evolve" the autoencoder architecture ...
Code
defmutate(self) ->MutableLayerParams:
"""Mutate layer parameters in order to aid evolution of autoencoder."""pass
Problem
Might be good to have a single autoencoder class that is completely customizable (i.e. you can not only configure the layer parameters, but also change the layer type).
Solution
The tentative solution:
The text was updated successfully, but these errors were encountered: