Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Mutable Autoencoder #7

Open
DiogenesAnalytics opened this issue Dec 12, 2023 · 1 comment
Open

Feature: Mutable Autoencoder #7

DiogenesAnalytics opened this issue Dec 12, 2023 · 1 comment
Assignees
Labels
enhancement New feature or request

Comments

@DiogenesAnalytics
Copy link
Owner

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:

from .base import BaseLayerParams
from .base import BaseAutoencoder


class MutableLayerParams(BaseLayerParams):
    pass

class MutableAutoencoder(BaseAutoencoder):
    pass
@DiogenesAnalytics DiogenesAnalytics added the enhancement New feature or request label Dec 12, 2023
@DiogenesAnalytics DiogenesAnalytics self-assigned this Dec 12, 2023
@DiogenesAnalytics
Copy link
Owner Author

DiogenesAnalytics commented Dec 16, 2023

Idea: Mutate Method

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

def mutate(self) -> MutableLayerParams:
    """Mutate layer parameters in order to aid evolution of autoencoder."""
    pass

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant