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

Support GANS #2

Open
MaxVanDijck opened this issue Jun 17, 2022 · 0 comments
Open

Support GANS #2

MaxVanDijck opened this issue Jun 17, 2022 · 0 comments
Labels
enhancement New feature or request

Comments

@MaxVanDijck
Copy link
Owner

Due to the way we currently initialize and load models:

# Create Model and Load model if applicable
    model = idist.auto_model(hydra.utils.instantiate(config.model))
    log.info(f"Model: {model}")

    if config.checkpoint:
        model.load_state_dict(torch.load(config.checkpoint), strict=False)

It makes the refactoring of src/train_pipeline.py necessary if users want to use multiple multiple models i.e in the use of GANs.
Ideally this will be changed to support both single + multi model purposes.
Creating this issue as a reminder and to put ideas.

@MaxVanDijck MaxVanDijck added the enhancement New feature or request label Jun 17, 2022
@MaxVanDijck MaxVanDijck self-assigned this Jun 17, 2022
@MaxVanDijck MaxVanDijck removed their assignment Oct 15, 2022
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