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

Swin backbone missing requirements #21

Open
urimerhav opened this issue Aug 1, 2023 · 0 comments
Open

Swin backbone missing requirements #21

urimerhav opened this issue Aug 1, 2023 · 0 comments

Comments

@urimerhav
Copy link

urimerhav commented Aug 1, 2023

def build_vm(args):
    device = torch.device(args.device)

    if 'swin' in args.backbone:
        from .swin_transformer import build_swin_backbone
        backbone = build_swin_backbone(args)
    else:
        backbone = build_backbone(args)

swin_transformer isn't a defined requirements. I've scoured the official swin repo and it doesn't seem to have a function called build_swin_backbone. The only instance of this function name I could fine is this:

https://github.com/megvii-research/SOLQ

Is that the right dependency? If so, maybe added this to the docs and in a comment above this import?

@urimerhav urimerhav changed the title Swing backbone missing requirements Swin backbone missing requirements Aug 1, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant