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

[WIP][Add] Mask2Former #1059

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions segmentation_models_pytorch/decoders/mask2former/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .model import Mask2Former

__all__ = [Mask2Former]
11 changes: 11 additions & 0 deletions segmentation_models_pytorch/decoders/mask2former/decoder.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import torch.nn as nn


class Mask2FormerPixelModule(nn.Module):
def __init__(self):
super().__init__()


class Mask2FormerTransformerModule(nn.Module):
def __init__(self):
super().__init__()
15 changes: 15 additions & 0 deletions segmentation_models_pytorch/decoders/mask2former/model.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from segmentation_models_pytorch.base import (
SegmentationModel,
)

from .decoder import Mask2FormerPixelModule, Mask2FormerTransformerModule


class Mask2Former(SegmentationModel):
def __init__(self):
super().__init__()
pixel_module = Mask2FormerPixelModule()
transformer_module = Mask2FormerTransformerModule()

def forward(self, x):
return x