python_code
stringlengths
0
229k
from __future__ import print_function import torch from torch.autograd import Variable import torch.nn as nn import torch.optim as optim from tensorboardX import SummaryWriter import os import time import argparse import numpy as np from data_loader import VideoData from functions import * from networks import Resn...
import os import time from argparse import Namespace import torch from torch.autograd import Variable import torch.nn as nn import torch.optim as optim from tensorboardX import SummaryWriter from .data_loader import VideoData from .functions import compose_image_withshift, write_tb_log from .networks import ResnetCond...
import torch import torch.nn as nn import torch.nn.functional as F import torch.nn.init as init import numpy as np class ResnetConditionHR(nn.Module): def __init__(self, input_nc, output_nc, ngf=64, nf_part=64,norm_layer=nn.BatchNorm2d, use_dropout=False, n_blocks1=7, n_blocks2=3, padding_type='reflect'): assert(n...
####################################### # Prepares training data. Takes a path to a directory of videos + captured backgrounds, dumps frames, extracts human # segmentations. Also takes a path of background videos. Creates a training CSV file with lines of the following format, # by using all but the last 80 frames of e...
import subprocess import sys from utils import s3_utils def pip_install_requirements(): subprocess.check_call([sys.executable, '-m', 'pip', 'install', '-q', '-r', 'requirements.txt']) if __name__ == '__main__': pip_install_requirements() s3_utils.checkout_s3_data("INPUT_TARBALLS...
from __future__ import print_function import os, glob, time, argparse, pdb, cv2 #import matplotlib.pyplot as plt import numpy as np from skimage.measure import label import torch import torch.nn as nn from torch.autograd import Variable import torch.backends.cudnn as cudnn from functions import * from networks imp...
##Copyright 2017 Adobe Systems Inc. ## ##Licensed under the Apache License, Version 2.0 (the "License"); ##you may not use this file except in compliance with the License. ##You may obtain a copy of the License at ## ## http://www.apache.org/licenses/LICENSE-2.0 ## ##Unless required by applicable law or agreed to in...
from torchbenchmark.util.framework.vision.model_factory import TorchVisionModel from torchbenchmark.tasks import COMPUTER_VISION import torchvision.models as models class Model(TorchVisionModel): task = COMPUTER_VISION.CLASSIFICATION DEFAULT_TRAIN_BSIZE = 32 DEFAULT_EVAL_BSIZE = 32 def __init__(self, ...
from torchbenchmark.tasks import NLP from torchbenchmark.util.framework.huggingface.model_factory import HuggingFaceModel class Model(HuggingFaceModel): task = NLP.LANGUAGE_MODELING DEFAULT_TRAIN_BSIZE = 4 DEFAULT_EVAL_BSIZE = 1 def __init__(self, test, device, batch_size=None, extra_args=[]): ...
import subprocess import sys import os from torchbenchmark.util.framework.huggingface.patch_hf import patch_transformers, cache_model def pip_install_requirements(): subprocess.check_call([sys.executable, '-m', 'pip', 'install', '-q', '-r', 'requirements.txt']) if __name__ == '__main__': pip_install_requirem...
from torchbenchmark.util.framework.vision.model_factory import TorchVisionModel from torchbenchmark.tasks import COMPUTER_VISION import torchvision.models as models class Model(TorchVisionModel): task = COMPUTER_VISION.CLASSIFICATION DEFAULT_TRAIN_BSIZE = 8 DEFAULT_EVAL_BSIZE = 8 def __init__(self, te...
# 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. # # Description: an implementation of a deep learning recommendation model (DLRM) # The model input consists of dense and sparse features. The ...
from __future__ import absolute_import, division, print_function, unicode_literals # miscellaneous import builtins import functools # import bisect # import shutil import time import json from typing import Tuple import sys # data generation from . import dlrm_data_pytorch as dp # numpy import numpy as np # pytorch...
# 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. # # Description: generate inputs and targets for the DLRM benchmark # # Utility function(s) to download and pre-process public data sets # - ...
# 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. # # Description: generate inputs and targets for the dlrm benchmark # The inpts and outputs are generated according to the following three opti...
# Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. from __future__ import absolute_import, division, print_function, unicode_literals import os import numpy as np from torch.util...
import subprocess import sys def pip_install_requirements(): subprocess.check_call([sys.executable, '-m', 'pip', 'install', '-q', '-r', 'requirements.txt']) if __name__ == '__main__': pip_install_requirements()
# 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. # # Description: generate inputs and targets for the dlrm benchmark # The inpts and outputs are generated according to the following three opti...
# 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. # # Description: an implementation of a deep learning recommendation model (DLRM) # The model input consists of dense and sparse features. The ...
# 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. # # # This script performs the visualization of the embedding tables created in # DLRM during the training procedure. We use two popular techni...
# 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. # # Description: compile .so from python code from __future__ import absolute_import, division, print_function, unicode_literals from setupto...
# 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. # # Description: run dataset pre-processing in standalone mode # WARNING: These steps are required to work with Cython # 1. Instal Cython # > s...
# 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. # # Mixed-Dimensions Trick # # Description: Applies mixed dimension trick to embeddings to reduce # embedding sizes. # # References: # [1] Anto...
# 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. # # Quotient-Remainder Trick # # Description: Applies quotient remainder-trick to embeddings to reduce # embedding sizes. # # References: # [1]...
from .dataloader import SuperSloMo from .model_wrapper import Model as ModelWrapper import torch import torch.nn.functional as F import torch.optim as optim import torchvision.transforms as transforms import random from typing import Tuple import os import numpy as np from argparse import Namespace from pathlib import...
from . import slomo_model as model import torch import torchvision import torch.nn as nn import torch.nn.functional as F L1_lossFn = nn.L1Loss() MSE_LossFn = nn.MSELoss() class Model(torch.nn.Module): def __init__(self, device='cpu'): super().__init__() self.flowComp = model.UNet(6, 4).to(device...
#!/usr/bin/env python3 import argparse import os import os.path import ctypes from shutil import rmtree, move from PIL import Image import torch import torchvision.transforms as transforms import slomo_model as model import dataloader import platform from tqdm import tqdm # For parsing commandline arguments parser = a...
#[Super SloMo] ##High Quality Estimation of Multiple Intermediate Frames for Video Interpolation import argparse import torch import torchvision import torchvision.transforms as transforms import torch.optim as optim import torch.nn as nn import torch.nn.functional as F import slomo_model as model from model_wrapper ...
import torch.utils.data as data from PIL import Image import os import os.path import random def _make_dataset(dir): """ Creates a 2D list of all the frames in N clips containing M frames each. 2D List Structure: [[frame00, frame01,...frameM] <-- clip0 [frame00, frame01,...frameM] <-- clip...
import subprocess import sys from utils import s3_utils def pip_install_requirements(): subprocess.check_call([sys.executable, '-m', 'pip', 'install', '-q', '-r', 'requirements.txt']) if __name__ == '__main__': s3_utils.checkout_s3_data("INPUT_TARBALLS", "Super_SloMo_inputs.tar.gz", decompress=True) pip...
""" Converts a Video to SuperSloMo version """ from time import time import click import cv2 import torch from PIL import Image import numpy as np import slomo_model as model from torchvision import transforms import torch.nn.functional as F torch.set_grad_enabled(False) device = torch.device("cuda" if torch.cuda.is_...
import torch import torchvision import torchvision.transforms as transforms import torch.optim as optim import torch.nn as nn import torch.nn.functional as F import numpy as np class down(nn.Module): """ A class for creating neural network blocks containing layers: Average Pooling --> Convlution + Le...
# This file was adapted from # https://github.com/facebookresearch/higher/blob/master/examples/maml-omniglot.py # It comes with the following license. # # Copyright (c) Facebook, Inc. and its affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance...
import subprocess import sys from utils import s3_utils def pip_install_requirements(): subprocess.check_call([sys.executable, '-m', 'pip', 'install', '-q', '-r', 'requirements.txt']) if __name__ == '__main__': pip_install_requirements() s3_utils.checkout_s3_data("MODEL_PKLS", "maml_omniglot/batch.pt", d...
from torchbenchmark.tasks import NLP from torchbenchmark.util.framework.huggingface.model_factory import HuggingFaceModel class Model(HuggingFaceModel): task = NLP.LANGUAGE_MODELING DEFAULT_TRAIN_BSIZE = 8 DEFAULT_EVAL_BSIZE = 1 def __init__(self, test, device, batch_size=None, extra_args=[]): ...
import subprocess import sys import os from torchbenchmark.util.framework.huggingface.patch_hf import patch_transformers, cache_model def pip_install_requirements(): subprocess.check_call([sys.executable, '-m', 'pip', 'install', '-q', '-r', 'requirements.txt']) if __name__ == '__main__': pip_install_requirem...
import os from torchbenchmark.tasks import COMPUTER_VISION from torchbenchmark.util.framework.detectron2.model_factory import Detectron2Model MODEL_NAME = os.path.basename(os.path.dirname(os.path.abspath(__file__))) MODEL_DIR = os.path.abspath(os.path.dirname(__file__)) class Model(Detectron2Model): task = COMPU...
import os from torchbenchmark.util.framework.detectron2 import install_detectron2 MODEL_NAME = os.path.basename(os.path.dirname(os.path.abspath(__file__))) MODEL_DIR = os.path.abspath(os.path.dirname(__file__)) if __name__ == '__main__': install_detectron2(MODEL_NAME, MODEL_DIR)
"Doctr recognition model" from doctr.models import ocr_predictor import numpy as np import torch # TorchBench imports from torchbenchmark.util.model import BenchmarkModel from torchbenchmark.tasks import COMPUTER_VISION from typing import Tuple class Model(BenchmarkModel): task = COMPUTER_VISION.DETECTION DE...
import os import warnings import subprocess import sys def pip_install_requirements(): try: subprocess.check_call(["conda", "install", "-y", "expecttest", "libglib", "pango", "-c", "conda-forge"]) except: warnings.warn("The doctr_reco_predictor model requires conda binary libaries to be install...
import os from torchbenchmark.tasks import COMPUTER_VISION from torchbenchmark.util.framework.detectron2.model_factory import Detectron2Model MODEL_NAME = os.path.basename(os.path.dirname(os.path.abspath(__file__))) MODEL_DIR = os.path.abspath(os.path.dirname(__file__)) class Model(Detectron2Model): task = COMPUT...
import os from torchbenchmark.util.framework.detectron2 import install_detectron2 MODEL_NAME = os.path.basename(os.path.dirname(os.path.abspath(__file__))) MODEL_DIR = os.path.abspath(os.path.dirname(__file__)) if __name__ == '__main__': install_detectron2(MODEL_NAME, MODEL_DIR)
# 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. """ Dora the Explorer, special thank to @pierrestock. """ import argparse import json import logging import shlex import sub...
#!/usr/bin/env python3 # 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. """ Run training locally on all visible GPUs. Start only one task per node as this script will spawn ...
import torch import sys a = torch.load(sys.argv[1]) b = torch.load(sys.argv[2]) torch.testing.assert_allclose(a,b, rtol=0.01, atol=0.01)
# 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. """ Quantize a pre-trained model. Just pass the path to the model to this script and it will save a gzipped compressed versi...
import json import torch import random import numpy as np from fractions import Fraction from .demucs.model import Demucs from .demucs.parser import get_name, get_parser from .demucs.augment import FlipChannels, FlipSign, Remix, Shift from .demucs.utils import capture_init, center_trim from ...util.model import Benchm...
# 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 gzip import json import sys from collections import defaultdict from pathlib import Path import num...
# 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 json from collections import defaultdict from pathlib import Path import numpy as np import treetab...
import subprocess import sys def pip_install_requirements(): subprocess.check_call([sys.executable, '-m', 'pip', 'install', '-q', '-r', 'requirements.txt']) def spacy_download(language): pass def preprocess(): pass if __name__ == '__main__': pip_install_requirements() spacy_download('') pre...
#!/usr/bin/env python3 # 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. """ Run training from Slurm on all visible GPUs. Start only one task per node as this script will spa...
# 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 collections import defaultdict, namedtuple from pathlib import Path import musdb import num...
# 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 json from concurrent import futures import musdb from .audio import AudioFile def get_musdb_tracks(root, *args, ...
# 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. # # Created on 2018/12 # Author: Kaituo XU # Modified on 2019/11 by Alexandre Defossez, added support for multiple output ch...
# 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 hashlib import sys from pathlib import Path import requests import torch as th import tqdm from sci...
# 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 gzip import sys from concurrent import futures import musdb import museval import torch as th import tqdm from scip...
# 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 as th from torch import nn class Shift(nn.Module): """ Randomly shift audio in time by ...
# 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 math import torch import torch as th from torch import Tensor, nn from .utils import capture_init, center_trim fro...
# 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 pathlib import Path def get_parser(): parser = argparse.ArgumentParser("demucs", descr...
# 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 errno import functools import gzip import os import random import socket import tempfile import warnings from contex...
# 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 sys import tqdm from torch.utils.data import DataLoader from torch.utils.data.distributed import DistributedSampler...
# 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 json import subprocess as sp from pathlib import Path import numpy as np import torch from .utils import temp_filen...
# 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 json import os import sys import time from dataclasses import dataclass, field from fractions import Fraction impor...
from torchbenchmark.tasks import NLP from torchbenchmark.util.framework.huggingface.model_factory import HuggingFaceModel class Model(HuggingFaceModel): task = NLP.LANGUAGE_MODELING DEFAULT_TRAIN_BSIZE = 8 DEFAULT_EVAL_BSIZE = 1 def __init__(self, test, device, batch_size=None, extra_args=[]): ...
import subprocess import sys import os from torchbenchmark.util.framework.huggingface.patch_hf import patch_transformers, cache_model def pip_install_requirements(): subprocess.check_call([sys.executable, '-m', 'pip', 'install', '-q', '-r', 'requirements.txt']) if __name__ == '__main__': pip_install_requirem...
import torch import sys a = torch.load(sys.argv[1]) b = torch.load(sys.argv[2]) torch.testing.assert_allclose(a,b, rtol=0.01, atol=0.01)
import argparse import torch.distributed as dist import torch.optim as optim import torch.optim.lr_scheduler as lr_scheduler from torch.utils.tensorboard import SummaryWriter from .test import test # import test.py to get mAP after each epoch from .yolo_models import * from .yolo_utils.datasets import * from .yolo_u...
#!/usr/bin/env python # Make all randomness deterministic import random import argparse import torch import os import numpy as np from contextlib import nullcontext torch.backends.cudnn.deterministic = False torch.backends.cudnn.benchmark = True from shlex import split from .yolo_train import prepare_training_loop f...
import argparse import json from torch.utils.data import DataLoader from .yolo_models import * from .yolo_utils.datasets import * from .yolo_utils.utils import * import os.path def test(cfg, data, weights=None, batch_size=16, imgsz=416, conf_thres=0.001, iou_thr...
import subprocess import sys import os from pathlib import Path from utils import s3_utils def setup_data_dir(): current_dir = Path(os.path.dirname(os.path.realpath(__file__))) coco128_data_dir = os.path.join(current_dir.parent.parent, "data", ".data", "coco128") assert os.path.exists(coco128_data_dir), "C...
from .yolo_utils.google_utils import * from .yolo_utils.layers import * from .yolo_utils.parse_config import * ONNX_EXPORT = False def create_modules(module_defs, img_size, cfg): # Constructs module list of layer blocks from module configuration in module_defs img_size = [img_size] * 2 if isinstance(img_siz...
import argparse from models import * # set ONNX_EXPORT in models.py from utils.datasets import * from utils.utils import * def detect(save_img=False): imgsz = (320, 192) if ONNX_EXPORT else opt.img_size # (320, 192) or (416, 256) or (608, 352) for (height, width) out, source, weights, half, view_img, save_...
import glob import math import os import random import shutil import time from pathlib import Path from threading import Thread import cv2 import numpy as np import torch from PIL import Image, ExifTags from torch.utils.data import Dataset from .utils import xyxy2xywh, xywh2xyxy help_url = 'https://github.com/ultral...
import glob import math import os import random import shutil import subprocess import time from copy import copy from pathlib import Path from sys import platform import cv2 import matplotlib import matplotlib.pyplot as plt import numpy as np import torch import torch.nn as nn import torchvision from tqdm import tqdm...
# This file contains google utils: https://cloud.google.com/storage/docs/reference/libraries # pip install --upgrade google-cloud-storage import os import time # from google.cloud import storage def gdrive_download(id='1HaXkef9z6y5l4vUnCYgdmEAj61c6bfWO', name='coco.zip'): # https://gist.github.com/tanaikech/f0...
import math import torch from torch.optim.optimizer import Optimizer class AdaBound(Optimizer): """Implements AdaBound algorithm. It has been proposed in `Adaptive Gradient Methods with Dynamic Bound of Learning Rate`_. Arguments: params (iterable): iterable of parameters to optimize or dicts def...
import os import numpy as np def parse_model_cfg(path): # Parse the yolo *.cfg file and return module definitions path may be 'cfg/yolov3.cfg', 'yolov3.cfg', or 'yolov3' if not path.endswith('.cfg'): # add .cfg suffix if omitted path += '.cfg' if not os.path.exists(path) and os.path.exists('cfg'...
import torch.nn.functional as F from .utils import * def make_divisible(v, divisor): # Function ensures all layers have a channel number that is divisible by 8 # https://github.com/tensorflow/models/blob/master/research/slim/nets/mobilenet/mobilenet.py return math.ceil(v / divisor) * divisor class Flat...
import math import os import time from copy import deepcopy import torch import torch.backends.cudnn as cudnn import torch.nn as nn import torch.nn.functional as F import numpy as np def print(*args): pass # do nothing def init_seeds(seed=0): torch.manual_seed(seed) np.random.seed(seed) # Reduce r...
from torchbenchmark.util.framework.gnn.model_factory import BasicGNNModel from torchbenchmark.tasks import GNN class Model(BasicGNNModel): def __init__(self, test, device, batch_size=None, extra_args=[]): super().__init__(model_name="sage", test=test, device=device, batch_size=batc...
from torchbenchmark.util.framework.gnn import install_pytorch_geometric if __name__ == '__main__': install_pytorch_geometric()
from torchbenchmark.util.framework.gnn.model_factory import BasicGNNModel from torchbenchmark.tasks import GNN class Model(BasicGNNModel): def __init__(self, test, device, batch_size=None, extra_args=[]): super().__init__(model_name="edgecnn", test=test, device=device, batch_size=b...
from torchbenchmark.util.framework.gnn import install_pytorch_geometric if __name__ == '__main__': install_pytorch_geometric()
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import argparse import os import sys import time import traceback import math import torch import torch as T from .model import SpeakerEncoder, AngleProtoLoss from torch.optim.optimizer import Optimizer torch.backends.cudnn.enabled = True torch.backends.cudnn.benchmark...
from ...util.model import BenchmarkModel from torchbenchmark.tasks import SPEECH import torch from typing import Tuple from .angular_tts_main import TTSModel class Model(BenchmarkModel): task = SPEECH.SYNTHESIS # Original train batch size: 64 # Source: https://github.com/mozilla/TTS/blob/master/TTS/speake...
import torch import torch.nn.functional as F import numpy as np from torch import nn class LSTMWithProjection(nn.Module): def __init__(self, input_size, hidden_size, proj_size): super().__init__() self.input_size = input_size self.hidden_size = hidden_size self.proj_size = proj_siz...
import subprocess import sys def pip_install_requirements(): subprocess.check_call([sys.executable, '-m', 'pip', 'install', '-q', '-r', 'requirements.txt']) if __name__ == '__main__': pip_install_requirements()
""" HuggingFace Stable Diffusion model. It requires users to specify "HUGGINGFACE_AUTH_TOKEN" in environment variable to authorize login and agree HuggingFace terms and conditions. """ from torchbenchmark.tasks import COMPUTER_VISION from torchbenchmark.util.model import BenchmarkModel from torchbenchmark.util.framewor...
from torchbenchmark.util.framework.diffusers import install_diffusers from torchbenchmark.util.framework.huggingface.model_factory import HuggingFaceAuthMixin import torch import os import warnings MODEL_NAME = "stabilityai/stable-diffusion-2" def load_model_checkpoint(): from diffusers import StableDiffusionPipel...
from torchbenchmark.util.framework.vision.model_factory import TorchVisionModel from torchbenchmark.tasks import COMPUTER_VISION import torchvision.models as models class Model(TorchVisionModel): task = COMPUTER_VISION.CLASSIFICATION # Original train batch size 256 on 4-GPU system # Downscale to 64 to run...
import os from torchbenchmark.tasks import COMPUTER_VISION from torchbenchmark.util.framework.detectron2.model_factory import Detectron2Model MODEL_NAME = os.path.basename(os.path.dirname(os.path.abspath(__file__))) MODEL_DIR = os.path.abspath(os.path.dirname(__file__)) class Model(Detectron2Model): task = COMPUT...
import os from torchbenchmark.util.framework.detectron2 import install_detectron2 MODEL_NAME = os.path.basename(os.path.dirname(os.path.abspath(__file__))) MODEL_DIR = os.path.abspath(os.path.dirname(__file__)) if __name__ == '__main__': install_detectron2(MODEL_NAME, MODEL_DIR)
from torchbenchmark.util.framework.vision.model_factory import TorchVisionModel from torchbenchmark.tasks import COMPUTER_VISION import torchvision.models as models class Model(TorchVisionModel): task = COMPUTER_VISION.CLASSIFICATION DEFAULT_TRAIN_BSIZE = 96 DEFAULT_EVAL_BSIZE = 16 def __init__(self, ...
from torchbenchmark.tasks import NLP from torchbenchmark.util.framework.huggingface.model_factory import HuggingFaceModel, HuggingFaceAuthMixin class Model(HuggingFaceModel, HuggingFaceAuthMixin): task = NLP.LANGUAGE_MODELING DEFAULT_TRAIN_BSIZE = 1 DEFAULT_EVAL_BSIZE = 1 DEEPCOPY = False def __i...