Skip to content

taps.apps.configs.moldesign

MoldesignConfig

Bases: AppConfig

Moldesign application configuration.

get_app()

get_app() -> App

Create an application instance from the config.

Source code in taps/apps/configs/moldesign.py
def get_app(self) -> App:
    """Create an application instance from the config."""
    from taps.apps.moldesign.app import MoldesignApp

    return MoldesignApp(
        dataset=self.dataset,
        initial_count=self.initial_count,
        search_count=self.search_count,
        batch_size=self.batch_size,
        seed=self.seed,
    )