python_code
stringlengths
0
4.04M
repo_name
stringlengths
8
58
file_path
stringlengths
5
147
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. """Modules used for building the models.""" # flake8: noqa from .conv import ( NormConv1d, NormConv2d, NormCo...
audiocraft-main
audiocraft/modules/__init__.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from collections import namedtuple from dataclasses import dataclass from functools import lru_cache import logging impor...
audiocraft-main
audiocraft/modules/codebooks_patterns.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. """ Transformer model, with streaming support, xformer attention support and easy causal attention with a potentially fin...
audiocraft-main
audiocraft/modules/transformer.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import typing as tp from torch import nn import torch class XPos(nn.Module): """Length-extrapolatable positional e...
audiocraft-main
audiocraft/modules/rope.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. """ Functions for Noise Schedule, defines diffusion process, reverse process and data processor. """ from collections im...
audiocraft-main
audiocraft/modules/diffusion_schedule.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import math import typing as tp import warnings import torch from torch import nn from torch.nn import functional as F f...
audiocraft-main
audiocraft/modules/conv.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from torch import nn class StreamableLSTM(nn.Module): """LSTM without worrying about the hidden state, nor the layo...
audiocraft-main
audiocraft/modules/lstm.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. """ Streaming module API that should be implemented by all Streaming components, """ from contextlib import contextmanag...
audiocraft-main
audiocraft/modules/streaming.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import typing as tp from einops import rearrange from librosa import filters import torch from torch import nn import tor...
audiocraft-main
audiocraft/modules/chroma.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from collections import defaultdict from copy import deepcopy from dataclasses import dataclass, field from itertools imp...
audiocraft-main
audiocraft/modules/conditioners.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. """AudioDataset support. In order to handle a larger number of files without having to scan again the folders, we precompu...
audiocraft-main
audiocraft/data/audio_dataset.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. """Audio loading and writing support. Datasets for raw audio or also including some metadata.""" # flake8: noqa from . im...
audiocraft-main
audiocraft/data/__init__.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. """Dataset of music tracks with rich metadata. """ from dataclasses import dataclass, field, fields, replace import gzip i...
audiocraft-main
audiocraft/data/music_dataset.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. """Utility for reading some info from inside a zip file. """ import typing import zipfile from dataclasses import datacl...
audiocraft-main
audiocraft/data/zip.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. """Various utilities for audio convertion (pcm format, sample rate and channels), and volume normalization.""" import sys ...
audiocraft-main
audiocraft/data/audio_utils.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. """Base classes for the datasets that also provide non-audio metadata, e.g. description, text transcription etc. """ from ...
audiocraft-main
audiocraft/data/info_audio_dataset.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. """ Audio IO methods are defined in this module (info, read, write), We rely on av library for faster read when possible,...
audiocraft-main
audiocraft/data/audio.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. """Dataset of audio with a simple description. """ from dataclasses import dataclass, fields, replace import json from pa...
audiocraft-main
audiocraft/data/sound_dataset.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree.
audiocraft-main
tests/__init__.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from pathlib import Path import typing as tp import torch import torchaudio def get_white_noise(chs: int = 1, num_fram...
audiocraft-main
tests/common_utils/wav_utils.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. # flake8: noqa from .temp_utils import TempDirMixin from .wav_utils import get_batch_white_noise, get_white_noise, save_w...
audiocraft-main
tests/common_utils/__init__.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import os import tempfile class TempDirMixin: """Mixin to provide easy access to temp dir. """ temp_dir_ =...
audiocraft-main
tests/common_utils/temp_utils.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import random import torch from audiocraft.losses import ( MelSpectrogramL1Loss, MultiScaleMelSpectrogramLoss, ...
audiocraft-main
tests/losses/test_losses.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree.
audiocraft-main
tests/losses/__init__.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import pytest import random import torch from audiocraft.adversarial import ( AdversarialLoss, get_adv_criterio...
audiocraft-main
tests/adversarial/test_losses.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree.
audiocraft-main
tests/adversarial/__init__.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import random import torch from audiocraft.adversarial.discriminators import ( MultiPeriodDiscriminator, MultiS...
audiocraft-main
tests/adversarial/test_discriminators.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree.
audiocraft-main
tests/utils/__init__.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import pytest import torch from audiocraft.models import MusicGen class TestMusicGenModel: def get_musicgen(self):...
audiocraft-main
tests/models/test_musicgen.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import random import numpy as np import torch from audiocraft.models import EncodecModel from audiocraft.modules import...
audiocraft-main
tests/models/test_encodec_model.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import random import numpy as np import torch from audiocraft.models.multibanddiffusion import MultiBandDiffusion, Diffu...
audiocraft-main
tests/models/test_multibanddiffusion.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import pytest import torch from audiocraft.models import AudioGen class TestAudioGenModel: def get_audiogen(self):...
audiocraft-main
tests/models/test_audiogen.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import torch from audiocraft.quantization.vq import ResidualVectorQuantizer class TestResidualVectorQuantizer: de...
audiocraft-main
tests/quantization/test_vq.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import torch from torch import nn from audiocraft.modules.activations import CustomGLU class TestActivations: def ...
audiocraft-main
tests/modules/test_activations.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree.
audiocraft-main
tests/modules/__init__.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import torch from audiocraft.modules.rope import RotaryEmbedding from audiocraft.modules.transformer import StreamingTra...
audiocraft-main
tests/modules/test_rope.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import pytest import torch from audiocraft.modules.codebooks_patterns import ( DelayedPatternProvider, ParallelP...
audiocraft-main
tests/modules/test_codebooks_patterns.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from itertools import product import pytest import torch from audiocraft.modules.seanet import SEANetEncoder, SEANetDec...
audiocraft-main
tests/modules/test_seanet.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import random import torch from audiocraft.modules.lstm import StreamableLSTM class TestStreamableLSTM: def test_...
audiocraft-main
tests/modules/test_lstm.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from itertools import product import pytest import torch from audiocraft.modules.transformer import ( StreamingMult...
audiocraft-main
tests/modules/test_transformer.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from itertools import product import math import random import pytest import torch from torch import nn from audiocraft...
audiocraft-main
tests/modules/test_conv.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from functools import partial from itertools import product import json import math import os import random import typing...
audiocraft-main
tests/data/test_audio_dataset.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. from itertools import product import random import numpy as np import torch import torchaudio from audiocraft.data.audi...
audiocraft-main
tests/data/test_audio.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree.
audiocraft-main
tests/data/__init__.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. import julius import torch import pytest from audiocraft.data.audio_utils import ( _clip_wav, convert_audio_chan...
audiocraft-main
tests/data/test_audio_utils.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree.
audiocraft-main
scripts/__init__.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. """ To run this script, from the root of the repo. Make sure to have Flask installed FLASK_DEBUG=1 FLASK_APP=script...
audiocraft-main
scripts/mos.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. """Resampling script. """ import argparse from pathlib import Path import shutil import typing as tp import submitit impo...
audiocraft-main
scripts/resample_dataset.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. # Updated to account for UI changes from https://github.com/rkfg/audiocraft/blob/long/app.py # also released under the MIT...
audiocraft-main
demos/musicgen_app.py
# Copyright (c) Facebook, Inc. and its affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. from setuptools import setup, find_packages extras_require = { "visualization": ["graphviz"], "tests": ["cytoolz", "pytest", "pytest-c...
dagger-master
setup.py
# Copyright (c) Facebook, Inc. and its affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. from .experiment import ( Experiment, ExperimentState, ExperimentStatePromise, Function, Recipe, )
dagger-master
dagger/__init__.py
# Copyright (c) Facebook, Inc. and its affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import hashlib import json import logging import pathlib import pickle import uuid from collections import defaultdict from contextlib import c...
dagger-master
dagger/experiment.py
# Copyright (c) Facebook, Inc. and its affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import fnmatch from collections import namedtuple class StaticExperimentTree( namedtuple("StaticExperimentTree", ["node_map", "edge_map",...
dagger-master
dagger/static.py
# Copyright (c) Facebook, Inc. and its affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import glob import os import random from operator import add, mul import pytest from dask.delayed import Delayed from dagger import ( Exp...
dagger-master
tests/test_dag.py
import sys sys.path.insert(0, "Mask2Former") import tempfile from pathlib import Path import numpy as np import cv2 import cog # import some common detectron2 utilities from detectron2.config import CfgNode as CN from detectron2.engine import DefaultPredictor from detectron2.config import get_cfg from detectron2.utils...
CutLER-main
videocutler/predict.py
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved """ MaskFormer Training Script. This script is a simplified version of the training script in detectron2/tools. """ try: # ignore ShapelyDeprecationWarning from fvcore from shapely.errors import ShapelyDeprecationWarning import warnings...
CutLER-main
videocutler/train_net_video.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # Modified by XuDong Wang from detectron2 and cocoapi import argparse import os from mask2former_video.data_video.datasets.ytvis_api.ytvoseval import YTVOSeval from mask2former_video.data_video.datasets.ytvis_api.ytvos import YTVOS def print_and_summary(cocoEval):...
CutLER-main
videocutler/eval_ytvis.py
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved """ MaskFormer Training Script. This script is a simplified version of the training script in detectron2/tools. """ try: # ignore ShapelyDeprecationWarning from fvcore from shapely.errors import ShapelyDeprecationWarning import warnings...
CutLER-main
videocutler/train_net.py
# Copyright (c) Facebook, Inc. and its affiliates. # Copied from: https://github.com/facebookresearch/detectron2/blob/master/demo/predictor.py import atexit import bisect import multiprocessing as mp from collections import deque import cv2 import torch from detectron2.data import MetadataCatalog from detectron2.engi...
CutLER-main
videocutler/demo/predictor.py
# Copyright (c) Facebook, Inc. and its affiliates. # Modified by Bowen Cheng from: https://github.com/facebookresearch/detectron2/blob/master/demo/demo.py import argparse import glob import multiprocessing as mp import os # fmt: off import sys sys.path.insert(1, os.path.join(sys.path[0], '..')) # fmt: on import tempf...
CutLER-main
videocutler/demo/demo.py
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its affiliates. import argparse import json import os from collections import defaultdict from tqdm import tqdm import numpy as np import torch from detectron2.data import MetadataCatalog from detectron2.data.detection_utils import read_image from detectron2.u...
CutLER-main
videocutler/tools/evaluate_pq_for_semantic_segmentation.py
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its affiliates. import pickle as pkl import sys import torch """ Usage: # download one of the ResNet{18,34,50,101,152} models from torchvision: wget https://download.pytorch.org/models/resnet50-19c8e357.pth -O r50.pth # run the conversion ./convert-tor...
CutLER-main
videocutler/tools/convert-torchvision-to-d2.py
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved # Modified by Bowen Cheng from: https://github.com/bowenc0221/boundary-iou-api/blob/master/tools/coco_instance_evaluation.py """ Evaluation for COCO val2017: python ./tools/coco_instance_evaluation.py \ --gt-json-file COCO...
CutLER-main
videocutler/tools/evaluate_coco_boundary_ap.py
# -*- coding: utf-8 -*- # Copyright (c) Facebook, Inc. and its affiliates. # Modified by Bowen Cheng from https://github.com/facebookresearch/detectron2/blob/main/tools/analyze_model.py import logging import numpy as np from collections import Counter import tqdm from fvcore.nn import flop_count_table # can also try ...
CutLER-main
videocutler/tools/analyze_model.py
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved import pickle as pkl import sys import torch """ Usage: # download pretrained swin model: wget https://github.com/SwinTransformer/storage/releases/download/v1.0.0/swin_tiny_patch4_window7_224.pth # run the conversion ...
CutLER-main
videocutler/tools/convert-pretrained-swin-model-to-d2.py
# Copyright (c) Facebook, Inc. and its affiliates. import copy import logging from itertools import count import numpy as np import torch from fvcore.transforms import HFlipTransform from torch import nn from torch.nn.parallel import DistributedDataParallel from detectron2.data.detection_utils import read_image from ...
CutLER-main
videocutler/mask2former/test_time_augmentation.py
# -*- coding: utf-8 -*- # Copyright (c) Facebook, Inc. and its affiliates. from detectron2.config import CfgNode as CN def add_maskformer2_config(cfg): """ Add config for MASK_FORMER. """ # NOTE: configs from original maskformer # data config # select the dataset mapper cfg.INPUT.DATASET_M...
CutLER-main
videocutler/mask2former/config.py
# Copyright (c) Facebook, Inc. and its affiliates. from typing import Tuple import torch from torch import nn from torch.nn import functional as F from detectron2.config import configurable from detectron2.data import MetadataCatalog from detectron2.modeling import META_ARCH_REGISTRY, build_backbone, build_sem_seg_he...
CutLER-main
videocutler/mask2former/maskformer_model.py
# Copyright (c) Facebook, Inc. and its affiliates. from . import data # register all new datasets from . import modeling # config from .config import add_maskformer2_config # dataset loading from .data.dataset_mappers.coco_instance_new_baseline_dataset_mapper import COCOInstanceNewBaselineDatasetMapper from .data.da...
CutLER-main
videocutler/mask2former/__init__.py
# Copyright (c) Facebook, Inc. and its affiliates. # Modified by Bowen Cheng from https://github.com/facebookresearch/detr/blob/master/util/misc.py """ Misc functions, including distributed helpers. Mostly copy-paste from torchvision references. """ from typing import List, Optional import torch import torch.distribu...
CutLER-main
videocutler/mask2former/utils/misc.py
# Copyright (c) Facebook, Inc. and its affiliates.
CutLER-main
videocutler/mask2former/utils/__init__.py
# Copyright (c) Facebook, Inc. and its affiliates. # Modified by Bowen Cheng from https://github.com/facebookresearch/detr/blob/master/models/matcher.py """ Modules to compute the matching cost and solve the corresponding LSAP. """ import torch import torch.nn.functional as F from scipy.optimize import linear_sum_assig...
CutLER-main
videocutler/mask2former/modeling/matcher.py
# Copyright (c) Facebook, Inc. and its affiliates. from .backbone.swin import D2SwinTransformer from .pixel_decoder.fpn import BasePixelDecoder from .pixel_decoder.msdeformattn import MSDeformAttnPixelDecoder from .meta_arch.mask_former_head import MaskFormerHead from .meta_arch.per_pixel_baseline import PerPixelBaseli...
CutLER-main
videocutler/mask2former/modeling/__init__.py
# Copyright (c) Facebook, Inc. and its affiliates. # Modified by Bowen Cheng from https://github.com/facebookresearch/detr/blob/master/models/detr.py """ MaskFormer criterion. """ import logging import torch import torch.nn.functional as F from torch import nn from detectron2.utils.comm import get_world_size from det...
CutLER-main
videocutler/mask2former/modeling/criterion.py
# Copyright (c) Facebook, Inc. and its affiliates. # Modified by Bowen Cheng from: https://github.com/facebookresearch/detr/blob/master/models/detr.py import fvcore.nn.weight_init as weight_init import torch from torch import nn from torch.nn import functional as F from detectron2.config import configurable from detec...
CutLER-main
videocutler/mask2former/modeling/transformer_decoder/maskformer_transformer_decoder.py
# Copyright (c) Facebook, Inc. and its affiliates. # Modified by Bowen Cheng from: https://github.com/facebookresearch/detr/blob/master/models/detr.py import logging import fvcore.nn.weight_init as weight_init from typing import Optional import torch from torch import nn, Tensor from torch.nn import functional as F fr...
CutLER-main
videocutler/mask2former/modeling/transformer_decoder/mask2former_transformer_decoder.py
# Copyright (c) Facebook, Inc. and its affiliates. # # Modified by Bowen Cheng from: https://github.com/facebookresearch/detr/blob/master/models/position_encoding.py """ Various positional encodings for the transformer. """ import math import torch from torch import nn class PositionEmbeddingSine(nn.Module): """...
CutLER-main
videocutler/mask2former/modeling/transformer_decoder/position_encoding.py
# Copyright (c) Facebook, Inc. and its affiliates. from .maskformer_transformer_decoder import StandardTransformerDecoder from .mask2former_transformer_decoder import MultiScaleMaskedTransformerDecoder
CutLER-main
videocutler/mask2former/modeling/transformer_decoder/__init__.py
# Copyright (c) Facebook, Inc. and its affiliates. # Modified by Bowen Cheng from: https://github.com/facebookresearch/detr/blob/master/models/transformer.py """ Transformer class. Copy-paste from torch.nn.Transformer with modifications: * positional encodings are passed in MHattention * extra LN at the end of...
CutLER-main
videocutler/mask2former/modeling/transformer_decoder/transformer.py
# Copyright (c) Facebook, Inc. and its affiliates. import logging import numpy as np from typing import Callable, Dict, List, Optional, Tuple, Union import fvcore.nn.weight_init as weight_init import torch from torch import nn from torch.nn import functional as F from torch.nn.init import xavier_uniform_, constant_, u...
CutLER-main
videocutler/mask2former/modeling/pixel_decoder/fpn.py
# Copyright (c) Facebook, Inc. and its affiliates.
CutLER-main
videocutler/mask2former/modeling/pixel_decoder/__init__.py
# Copyright (c) Facebook, Inc. and its affiliates. import logging import numpy as np from typing import Callable, Dict, List, Optional, Tuple, Union import fvcore.nn.weight_init as weight_init import torch from torch import nn from torch.nn import functional as F from torch.nn.init import xavier_uniform_, constant_, u...
CutLER-main
videocutler/mask2former/modeling/pixel_decoder/msdeformattn.py
# ------------------------------------------------------------------------------------------------ # Deformable DETR # Copyright (c) 2020 SenseTime. All Rights Reserved. # Licensed under the Apache License, Version 2.0 [see LICENSE for details] # -------------------------------------------------------------------------...
CutLER-main
videocutler/mask2former/modeling/pixel_decoder/ops/test.py
# ------------------------------------------------------------------------------------------------ # Deformable DETR # Copyright (c) 2020 SenseTime. All Rights Reserved. # Licensed under the Apache License, Version 2.0 [see LICENSE for details] # -------------------------------------------------------------------------...
CutLER-main
videocutler/mask2former/modeling/pixel_decoder/ops/setup.py
# ------------------------------------------------------------------------------------------------ # Deformable DETR # Copyright (c) 2020 SenseTime. All Rights Reserved. # Licensed under the Apache License, Version 2.0 [see LICENSE for details] # -------------------------------------------------------------------------...
CutLER-main
videocutler/mask2former/modeling/pixel_decoder/ops/functions/ms_deform_attn_func.py
# ------------------------------------------------------------------------------------------------ # Deformable DETR # Copyright (c) 2020 SenseTime. All Rights Reserved. # Licensed under the Apache License, Version 2.0 [see LICENSE for details] # -------------------------------------------------------------------------...
CutLER-main
videocutler/mask2former/modeling/pixel_decoder/ops/functions/__init__.py
# ------------------------------------------------------------------------------------------------ # Deformable DETR # Copyright (c) 2020 SenseTime. All Rights Reserved. # Licensed under the Apache License, Version 2.0 [see LICENSE for details] # -------------------------------------------------------------------------...
CutLER-main
videocutler/mask2former/modeling/pixel_decoder/ops/modules/ms_deform_attn.py
# ------------------------------------------------------------------------------------------------ # Deformable DETR # Copyright (c) 2020 SenseTime. All Rights Reserved. # Licensed under the Apache License, Version 2.0 [see LICENSE for details] # -------------------------------------------------------------------------...
CutLER-main
videocutler/mask2former/modeling/pixel_decoder/ops/modules/__init__.py
# Copyright (c) Facebook, Inc. and its affiliates. import logging from copy import deepcopy from typing import Callable, Dict, List, Optional, Tuple, Union import fvcore.nn.weight_init as weight_init from torch import nn from torch.nn import functional as F from detectron2.config import configurable from detectron2.l...
CutLER-main
videocutler/mask2former/modeling/meta_arch/mask_former_head.py
# Copyright (c) Facebook, Inc. and its affiliates.
CutLER-main
videocutler/mask2former/modeling/meta_arch/__init__.py
# Copyright (c) Facebook, Inc. and its affiliates. import logging from typing import Callable, Dict, List, Optional, Tuple, Union import fvcore.nn.weight_init as weight_init from torch import nn from torch.nn import functional as F from detectron2.config import configurable from detectron2.layers import Conv2d, Shape...
CutLER-main
videocutler/mask2former/modeling/meta_arch/per_pixel_baseline.py
# -------------------------------------------------------- # Swin Transformer # Copyright (c) 2021 Microsoft # Licensed under The MIT License [see LICENSE for details] # Written by Ze Liu, Yutong Lin, Yixuan Wei # -------------------------------------------------------- # Copyright (c) Facebook, Inc. and its affiliate...
CutLER-main
videocutler/mask2former/modeling/backbone/swin.py
# Copyright (c) Facebook, Inc. and its affiliates.
CutLER-main
videocutler/mask2former/modeling/backbone/__init__.py
CutLER-main
videocutler/mask2former/evaluation/__init__.py
# Copyright (c) Facebook, Inc. and its affiliates. import contextlib import copy import io import itertools import json import logging import numpy as np import os import pickle from collections import OrderedDict import pycocotools.mask as mask_util import torch from pycocotools.coco import COCO from pycocotools.cocoe...
CutLER-main
videocutler/mask2former/evaluation/instance_evaluation.py
# Copyright (c) Facebook, Inc. and its affiliates. from . import datasets
CutLER-main
videocutler/mask2former/data/__init__.py
# Copyright (c) Facebook, Inc. and its affiliates.
CutLER-main
videocutler/mask2former/data/dataset_mappers/__init__.py
# Copyright (c) Facebook, Inc. and its affiliates. # Copied from https://github.com/facebookresearch/Mask2Former/tree/main/mask2former/data/dataset_mappers/ import copy import logging import numpy as np import torch from detectron2.config import configurable from detectron2.data import detection_utils as utils from d...
CutLER-main
videocutler/mask2former/data/dataset_mappers/coco_panoptic_new_baseline_dataset_mapper.py
# Copyright (c) Facebook, Inc. and its affiliates. # Modified by XuDong from https://github.com/facebookresearch/Mask2Former/tree/main/mask2former/data/dataset_mappers/ import copy import logging import numpy as np import torch from torch.nn import functional as F from detectron2.config import configurable from dete...
CutLER-main
videocutler/mask2former/data/dataset_mappers/mask_former_semantic_dataset_mapper.py
# Copyright (c) Facebook, Inc. and its affiliates. # Modified by XuDong from https://github.com/facebookresearch/Mask2Former/tree/main/mask2former/data/dataset_mappers/ import copy import logging import numpy as np import torch from torch.nn import functional as F from detectron2.config import configurable from dete...
CutLER-main
videocutler/mask2former/data/dataset_mappers/mask_former_panoptic_dataset_mapper.py