python_code
stringlengths
0
66.4k
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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 glob import argparse import numpy as np import resampy from scikits.audiolab impo...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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 time import torch from options.train_options import TrainOptions from data.data_loa...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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 librosa import argparse import numpy as np from numpy import linalg as LA from sci...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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 argparse import librosa import numpy as np from PIL import Image import subprocess ...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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 .base_options import BaseOptions class TestOptions(BaseOptions): def initialize(self): Base...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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 .base_options import BaseOptions class TrainOptions(BaseOptions): def initialize(self): Bas...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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 argparse import os from util import util import torch class BaseOptions(): def __init__(sel...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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 def mkdirs(paths): if isinstance(paths, list) and not isinstance(paths, str): ...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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 import torchvision from .networks import VisualNet, AudioNet, weights_init class Model...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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 numpy as np import torch from torch import optim import torch.nn.functional as F fr...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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 import torch.nn as nn import torch.nn.functional as F import functools def unet_conv(i...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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 import torch.nn as nn import torch.nn.functional as F class BaseLoss(nn.Module): ...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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.utils.data as data from PIL import Image import torchvision.transforms as transforms c...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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. def CreateDataLoader(opt): from data.custom_dataset_data_loader import CustomDatasetDataLoader ...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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. class BaseDataLoader(): def __init__(self): pass def initialize(self, opt): ...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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.utils.data from data.base_data_loader import BaseDataLoader def CreateDataset(opt): ...
#!/usr/bin/env python # Copyright (c) Facebook, Inc. and its 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.path import time import librosa import h5py import random import math import numpy as np...
# Copyright (c) Facebook, Inc. and its 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 gym import torch from collections import deque, defaultdict from gym import spaces import numpy as np from gym_mini...
# Copyright (c) Facebook, Inc. and its 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. """Naive profiling using timeit.""" import collections import timeit class Timings: """Not thread-safe.""" def ...
# Copyright (c) Facebook, Inc. and its 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 copy import datetime import csv import json import logging import os import time from typing import Dict import git...
# Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This file taken from # https://github.com/deepmind/scalable_agent/blob/ # cd66d00914d56c8ba2f0615d9cdeefcb169a8d70/vtrace.py # and modified. # # Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "Li...
# Copyright (c) Facebook, Inc. and its 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. """The environment class.""" import torch def _format_frame(frame): frame = torch.from_numpy(frame) return frame...
# Copyright (c) Facebook, Inc. and its 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.
# Copyright (c) Facebook, Inc. and its 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. # Must be run with OMP_NUM_THREADS=1 import random import argparse import logging import os import threading import time i...
# Copyright (c) Facebook, Inc. and its 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. # #!/usr/bin/env python3 import torch from torch import nn from torch.nn import functional as F class AdaptiveEmbedding(...
# Copyright (c) Facebook, Inc. and its 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. # #!/usr/bin/env python3 # command-line arguments with their default values PARAMS_CONFIG = { # env-specific 'env...
# Copyright (c) Facebook, Inc. and its 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. # #!/usr/bin/env python3 import math import torch import torch.nn as nn import torch.nn.functional as F class AdaptiveM...
# Copyright (c) Facebook, Inc. and its 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. # #!/usr/bin/env python3 import math import torch import torch.nn as nn import torch.nn.functional as F from adaptive_sp...
# Copyright (c) Facebook, Inc. and its 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. # #!/usr/bin/env python3 import os import math import argparse import torch from adagrad_with_grad_clip import AdagradWit...
# Copyright (c) Facebook, Inc. and its 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. # #!/usr/bin/env python3 import math import random import torch def _train_step(model, X, Y, h_cache, eval_only, loss_...
# Copyright (c) Facebook, Inc. and its 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. # #!/usr/bin/env python3 from argparse import Namespace import math import random import torch import torch.nn as nn impor...
# Copyright (c) Facebook, Inc. and its 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. # #!/usr/bin/env python3 import math import time import torch from config import PARAMS_CONFIG from data import get_trai...
# Copyright (c) Facebook, Inc. and its 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. # #!/usr/bin/env python3 import os import torch class Dictionary(object): def __init__(self, path, sort_dict=False):...
# Copyright (c) Facebook, Inc. and its 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. # #!/usr/bin/env python3 from torch.optim import Adagrad def _clip_grad(clr, grad, group_grad_clip): if group_grad_c...
# coding=utf-8 # Copyright (c) Facebook, Inc. and its affiliates. # Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team. # Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in ...
# Copyright (c) Facebook, Inc. and its affiliates. import json import random import argparse import os def clean(x): return x.replace("\n", "").replace("\r", "").replace("\t", " ").strip() parser = argparse.ArgumentParser() parser.add_argument("--data", default="./accentor-sgd/", type=str, required=False, help="...
# Copyright (c) Facebook, Inc. and its affiliates. import json import os from utils import bleuscorer import argparse def main(): parser = argparse.ArgumentParser() parser.add_argument("--inference", default="dev.inference.gpt2_10epoch_1e-3_fp16.json", type=str, required=False, help='inference file') pars...
# Copyright (c) Facebook, Inc. and its affiliates. import json import os import copy import random import argparse def main(): parser = argparse.ArgumentParser() parser.add_argument("--all", default=False, type=bool, required=False, help="use all dialogues rather than only augmented dialogues") parser.add...
# Copyright (c) Facebook, Inc. and its affiliates. from transformers import GPT2LMHeadModel, GPT2Tokenizer import torch import argparse import numpy as np import json from tqdm import tqdm def set_seed(args): np.random.seed(args.seed) torch.manual_seed(args.seed) if args.n_gpu > 0: torch.cuda.manu...
# Copyright (c) Facebook, Inc. and its affiliates. import json import random import argparse import os parser = argparse.ArgumentParser() parser.add_argument("--data", default="./simpletod/", type=str, required=False, help="path to delexed & augmented SGD") args = parser.parse_args() def clean(x): return x.repla...
# Copyright (c) Facebook, Inc. and its affiliates. import nltk def bleuscorer(hyps, refs): #print(hyps, refs) bleu = [] for hyp, ref in zip(hyps, refs): hyp = hyp.split() ref = [a.split() for a in ref] #hyp = nltk.word_tokenize(hyp) #ref = [nltk.word_tokenize(a) for a in re...
# coding=utf-8 # Copyright (c) Facebook, Inc. and its affiliates. # Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team. # Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in ...
# coding=utf-8 # Copyright (c) Facebook, Inc. and its affiliates. # Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team. # Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in ...
# Copyright (c) Facebook, Inc. and its affiliates. import json for fns in [["./lm.input.dev.eval.txt", "./lm.output.dev.cc.txt", "./dev.inference.gpt2_10epoch_1e-3_fp16.json", "lm.input.dev.eval.ff.txt"], ["./lm.input.test.eval.txt", "./lm.output.test.cc.txt", "./test.inference.gpt2_10epoch_1e-3_fp16.json...
# Copyright (c) Facebook, Inc. and its affiliates. import json with open("./acc_arranger_roberta_base_3epoch/is_test_true_eval_logits.txt", "r") as f: model_outputs = f.read().strip().split("\n") for i in range(len(model_outputs)): model_outputs[i] = model_outputs[i].split() for j in range(len...
# Copyright (c) Facebook, Inc. and its affiliates. import json import argparse if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument("--source", default="./MultiWOZ_2.1/data.json", type=str, required=False, help="Path to the MultiWOZ dataset.") args = parser.parse_args() ...
# Copyright (c) Facebook, Inc. and its affiliates. import json import argparse import os if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument("--source", default="./dstc8-schema-guided-dialogue", type=str, required=False, help="Path to the SGD dataset.") parser.add_argument("-...
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved # Implementation adapted from Slimmable - https://github.com/JiahuiYu/slimmable_networks import torch class CrossEntropyLossSoft(torch.nn.modules.loss._Loss): """ inplace distillation for image classification """ def forward(self, output, ...
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved import argparse import random import torch import torch.nn as nn import torch.distributed as dist import torch.multiprocessing as mp import models from utils.config import setup import utils.comm as comm import utils.saver as saver from data.dat...
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved # Modified from AttentiveNAS (https://github.com/facebookresearch/AttentiveNAS) import argparse import builtins import math import os import random import shutil import time import warnings import sys import operator from datetime import date imp...
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved # Modified from AttentiveNAS (https://github.com/facebookresearch/AttentiveNAS) import argparse import builtins import math import os import random import shutil import time import warnings import sys from datetime import date import torch import ...
# 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 numpy as np import scipy from scipy.optimize import Bounds, LinearConstraint, minimize, SR1 import pdb import math i...
# 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 numpy as np import scipy from scipy.optimize import Bounds, LinearConstraint, minimize, SR1 import pdb import math i...
# 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 numpy as np import scipy from scipy.optimize import Bounds, LinearConstraint, minimize, SR1 import pdb import mat...
# 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 logging from typing import TYPE_CHECKING, Any, Callable, Optional import torch import torch.optim impor...
""" Copyright (c) Facebook, Inc. and its 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 matplotlib.pyplot as plt from datasets import transformations import torch import numpy as np def plot_x2_reconstruc...
""" Copyright (c) Facebook, Inc. and its 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. """ """ Launches experiments locally or on the cluster python run_experiments.py [name] --cluster OPTIONS: python run_experime...
""" Copyright (c) Facebook, Inc. and its 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 collections import OrderedDict from abc import ABC class ResNetExplorer(nn.Module): ...
""" Copyright (c) Facebook, Inc. and its 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 import numpy as np import functools import pdb class ShiftOperator: """Performs discrete shift based on n_...
""" Copyright (c) Facebook, Inc. and its 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. """
""" Copyright (c) Facebook, Inc. and its 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 import numpy as np import random import matplotlib import matplotlib.pyplot as plt import models import latent_...
""" Copyright (c) Facebook, Inc. and its 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 copy import torch import json import os import random import numpy as np import models import latent_operators import ...
""" Copyright (c) Facebook, Inc. and its 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. """ """Implements CCI VAE https://arxiv.org/abs/1804.03599 """ import torch import os import numpy as np import models import js...
""" Copyright (c) Facebook, Inc. and its 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 import numpy as np import random import matplotlib import matplotlib.pyplot as plt import models import latent_o...
""" Copyright (c) Facebook, Inc. and its 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. --- Saves model/plots for best validation MSE """ import math import numpy as np import os from distutils.dir_util import copy_...
""" Copyright (c) Facebook, Inc. and its 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. """ """ Transformations applied to the input images """ import torch import itertools import numpy as np import skimage.transfor...
""" Copyright (c) Facebook, Inc. and its 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.utils.data import Dataset from torchvision import transforms from sklearn.model_selection import Stra...
""" Copyright (c) Facebook, Inc. and its 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. """
""" Copyright (c) Facebook, Inc. and its 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. """ """Script demonstrating drawing of anti-aliased lines using Xiaolin Wu's line algorithm usage: python xiaolinwu.py [output-...
""" Copyright (c) Facebook, Inc. and its 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.utils.data import Dataset, DataLoader import numpy as np from PIL import Image from .xiaolinwu import draw_line ...
""" Copyright (c) Facebook, Inc. and its 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 from datasets import datasets from cci_variational_autoencoder import CCIVariationalAutoEncoder BATCH_SIZE = 1...
""" Copyright (c) Facebook, Inc. and its 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 import math from datasets import transformations from datasets import datasets class TestSimpleShapes: def...
""" Copyright (c) Facebook, Inc. and its 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 from datasets import datasets from autoencoder import AutoEncoder class TestAutoencoder: @pytest.fixture(...
""" Copyright (c) Facebook, Inc. and its 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. """
""" Copyright (c) Facebook, Inc. and its 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 argparse import torch import sys sys.path.append("..") from datasets import datasets from weakly_complex_shift_autoen...
# Copyright (c) Meta Platforms, Inc. and affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import json import sys class Fab_HDD(): def __init__(self, config="BarraCuda"): ############################### # Carbo...
# Copyright (c) Meta Platforms, Inc. and affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import json import sys class Fab_Logic(): def __init__(self, process_node=14, gpa="97", c...
# Copyright (c) Meta Platforms, Inc. and affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import json import sys from dram_model import Fab_DRAM from ssd_model import Fab_SSD from logic_model import Fab_Logic def main(): ...
# Copyright (c) Meta Platforms, Inc. and affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import json import sys class Fab_DRAM(): def __init__(self, config = "ddr4_10nm", fab_yield=0.875): #########################...
# Copyright (c) Meta Platforms, Inc. and affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import json import sys class Fab_SSD(): def __init__(self, config="nand_10nm", fab_yield=0.875): ##############################...
# Copyright (c) Meta Platforms, Inc. and affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import json import sys from dram_model import Fab_DRAM from hdd_model import Fab_HDD from ssd_model import Fab_SSD from logic_model impo...
# Copyright (c) Meta Platforms, Inc. and affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import json import sys from dram_model import Fab_DRAM from hdd_model import Fab_HDD from ssd_model import Fab_SSD from logic_model impo...
#!/usr/bin/env python # 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 setuptools with open("README.md", "r") as fh: long_description = fh.read() def parse_requirements_file(pat...
# 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 nox @nox.session() def lint(session): session.install("--upgrade", "setuptools", "pip") session.install("-r", "requirements/de...
# 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 . import data, envs, experimental __all__ = ["data", "envs", "experimental"]
# 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 . import cvpr19_models __all__ = ["cvpr19_models"]
# 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 . import data, models, options, util __all__ = ["data", "models", "options", "util"]
# 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 ignite.engine import logging import os import tempfile import types import torch import torch.nn.functional as F import torch.optim as ...
# 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 . import base_options class TrainOptions(base_options.BaseOptions): def initialize(self, parser): parser = base_options.Base...
# 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 . import base_options, train_options # noqa:F401
# 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 argparse import torch class BaseOptions: def __init__(self): self.initialized = False self.parser = None def...
# 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 . import common __all__ = ["common"]
# 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 logging import os from typing import Dict, Optional import matplotlib.pyplot as plt import numpy as np import skimage.measure import to...
# 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. """ cvpr19_models.models.reconstruction.py ====================================== MRI Reconstruction model as described in `Zhang, Zizhao, et a...
# 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 . import evaluator, fft_utils, reconstruction # noqa: F401
# 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 torch import torch.nn as nn import torch.nn.functional as F def roll(x, shift, dim): if isinstance(shift, (tuple, list)): ...