python_code
stringlengths
0
229k
import os from typing import Tuple, Union from pathlib import Path import torchaudio from torch import Tensor from torch.utils.data import Dataset from torchaudio.datasets.utils import ( download_url, extract_archive, ) URL = "train-clean-100" FOLDER_IN_ARCHIVE = "LibriTTS" _CHECKSUMS = { "http://www.open...
import os from typing import Tuple, Union from pathlib import Path import torchaudio from torch import Tensor from torch.utils.data import Dataset from torchaudio.datasets.utils import ( download_url, extract_archive, ) _RELEASE_CONFIGS = { "release1": { "folder_in_archive": "TEDLIUM_release1", ...
import hashlib import logging import os import tarfile import urllib import urllib.request import zipfile from typing import Any, Iterable, List, Optional from torch.utils.model_zoo import tqdm def stream_url(url: str, start_byte: Optional[int] = None, block_size: int = 32 * 1024, ...
import os import csv from typing import Tuple, Union from pathlib import Path import torchaudio from torchaudio.datasets.utils import download_url, extract_archive from torch import Tensor from torch.utils.data import Dataset _RELEASE_CONFIGS = { "release1": { "folder_in_archive": "wavs", "url": "...
import os from pathlib import Path from typing import List, Tuple, Union from torch import Tensor from torch.utils.data import Dataset import torchaudio from torchaudio.datasets.utils import ( download_url, extract_archive, ) _RELEASE_CONFIGS = { "release1": { "folder_in_archive": "waves_yesno",...
import os from typing import Tuple, Union from pathlib import Path import torchaudio from torch import Tensor from torch.utils.data import Dataset from torchaudio.datasets.utils import ( download_url, extract_archive, ) URL = "train-clean-100" FOLDER_IN_ARCHIVE = "LibriSpeech" _CHECKSUMS = { "http://www.o...
from pathlib import Path from typing import Union, Tuple, List import torch from torch.utils.data import Dataset import torchaudio SampleType = Tuple[int, torch.Tensor, List[torch.Tensor]] class LibriMix(Dataset): r"""Create the LibriMix dataset. Args: root (str or Path): The path to the directory...
import os from typing import Tuple from torch import Tensor from torch.utils.data import Dataset import torchaudio from torchaudio.datasets.utils import ( download_url, extract_archive, ) URL = "https://datashare.is.ed.ac.uk/bitstream/handle/10283/3443/VCTK-Corpus-0.92.zip" _CHECKSUMS = { "https://datash...
from ._wav2vec2.impl import ( Wav2Vec2Bundle, Wav2Vec2ASRBundle, WAV2VEC2_BASE, WAV2VEC2_LARGE, WAV2VEC2_LARGE_LV60K, WAV2VEC2_ASR_BASE_10M, WAV2VEC2_ASR_BASE_100H, WAV2VEC2_ASR_BASE_960H, WAV2VEC2_ASR_LARGE_10M, WAV2VEC2_ASR_LARGE_100H, WAV2VEC2_ASR_LARGE_960H, WAV2VEC2_...
def _get_en_labels(): return ( '|', 'E', 'T', 'A', 'O', 'N', 'I', 'H', 'S', 'R', 'D', 'L', 'U', 'M', 'W', 'C', 'F', 'G', 'Y', 'P', 'B', 'V',...
from dataclasses import dataclass from typing import Dict, Tuple, Any import torch from torchaudio._internal import load_state_dict_from_url from torchaudio.models import wav2vec2_model, Wav2Vec2Model from . import utils __all__ = [] @dataclass class Wav2Vec2Bundle: """torchaudio.pipelines.Wav2Vec2Bundle() ...
from abc import ABC, abstractmethod from typing import Union, List, Tuple, Optional from torch import Tensor from torchaudio.models import Tacotron2 class _TextProcessor(ABC): @property @abstractmethod def tokens(self): """The tokens that the each value in the processed tensor represent. ...
from .interface import Tacotron2TTSBundle from .impl import ( TACOTRON2_GRIFFINLIM_CHAR_LJSPEECH, TACOTRON2_GRIFFINLIM_PHONE_LJSPEECH, TACOTRON2_WAVERNN_CHAR_LJSPEECH, TACOTRON2_WAVERNN_PHONE_LJSPEECH, ) __all__ = [ 'Tacotron2TTSBundle', 'TACOTRON2_GRIFFINLIM_CHAR_LJSPEECH', 'TACOTRON2_GRI...
import os import logging import torch from torchaudio._internal import ( download_url_to_file, module_utils as _mod_utils, ) def _get_chars(): return ( '_', '-', '!', "'", '(', ')', ',', '.', ':', ';', '?', '...
from dataclasses import dataclass import re from typing import Union, Optional, Dict, Any, Tuple, List import torch from torch import Tensor from torchaudio._internal import load_state_dict_from_url from torchaudio.models import Tacotron2, WaveRNN from torchaudio.functional import mu_law_decoding from torchaudio.tran...
from . import ( sox_utils, ) from torchaudio._internal import module_utils as _mod_utils if _mod_utils.is_sox_available(): sox_utils.set_verbosity(1)
from typing import List, Dict import torch from torchaudio._internal import module_utils as _mod_utils @_mod_utils.requires_sox() def set_seed(seed: int): """Set libsox's PRNG Args: seed (int): seed value. valid range is int32. See Also: http://sox.sourceforge.net/sox.html """ t...
# flake8: noqa from . import utils from .utils import ( list_audio_backends, get_audio_backend, set_audio_backend, ) utils._init_audio_backend()
import os from typing import Tuple, Optional import torch from torchaudio._internal import ( module_utils as _mod_utils, ) import torchaudio from .common import AudioMetaData @_mod_utils.requires_sox() def info( filepath: str, format: Optional[str] = None, ) -> AudioMetaData: """Get signal i...
class AudioMetaData: """Return type of ``torchaudio.info`` function. This class is used by :ref:`"sox_io" backend<sox_io_backend>` and :ref:`"soundfile" backend with the new interface<soundfile_backend>`. :ivar int sample_rate: Sample rate :ivar int num_frames: The number of frames :ivar int n...
"""Defines utilities for switching audio backends""" import warnings from typing import Optional, List import torchaudio from torchaudio._internal import module_utils as _mod_utils from . import ( no_backend, sox_io_backend, soundfile_backend, ) __all__ = [ 'list_audio_backends', 'get_audio_backen...
from pathlib import Path from typing import Callable, Optional, Tuple, Union from torch import Tensor def load(filepath: Union[str, Path], out: Optional[Tensor] = None, normalization: Union[bool, float, Callable] = True, channels_first: bool = True, num_frames: int = 0, o...
"""The new soundfile backend which will become default in 0.8.0 onward""" from typing import Tuple, Optional import warnings import torch from torchaudio._internal import module_utils as _mod_utils from .common import AudioMetaData if _mod_utils.is_soundfile_available(): import soundfile # Mapping from soundfil...
from torch import Tensor from torch import nn __all__ = [ "Wav2Letter", ] class Wav2Letter(nn.Module): r"""Wav2Letter model architecture from *Wav2Letter: an End-to-End ConvNet-based Speech Recognition System* [:footcite:`collobert2016wav2letter`]. :math:`\text{padding} = \frac{\text{ceil}(\text{ke...
# ***************************************************************************** # Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # * Redistributions...
"""Implements Conv-TasNet with building blocks of it. Based on https://github.com/naplab/Conv-TasNet/tree/e66d82a8f956a69749ec8a4ae382217faa097c5c """ from typing import Tuple, Optional import torch class ConvBlock(torch.nn.Module): """1D Convolutional block. Args: io_channels (int): The number of...
from .wav2letter import Wav2Letter from .wavernn import WaveRNN from .conv_tasnet import ConvTasNet from .deepspeech import DeepSpeech from .tacotron2 import Tacotron2 from .wav2vec2 import ( Wav2Vec2Model, wav2vec2_model, wav2vec2_base, wav2vec2_large, wav2vec2_large_lv60k, hubert_base, hub...
import torch __all__ = ["DeepSpeech"] class FullyConnected(torch.nn.Module): """ Args: n_feature: Number of input features n_hidden: Internal hidden unit size. """ def __init__(self, n_feature: int, n_hidden: int, dropout: float, ...
from typing import List, Tuple, Optional import math import torch from torch import Tensor from torch import nn import torch.nn.functional as F __all__ = [ "ResBlock", "MelResNet", "Stretch2d", "UpsampleNetwork", "WaveRNN", ] class ResBlock(nn.Module): r"""ResNet block based on *Efficient Ne...
from .model import ( Wav2Vec2Model, wav2vec2_model, wav2vec2_base, wav2vec2_large, wav2vec2_large_lv60k, hubert_base, hubert_large, hubert_xlarge, ) from . import utils __all__ = [ 'Wav2Vec2Model', 'wav2vec2_model', 'wav2vec2_base', 'wav2vec2_large', 'wav2vec2_large_...
from typing import Optional, Tuple, List import torch from torch import Tensor from torch.nn import Module from . import components class Wav2Vec2Model(Module): """torchaudio.models.Wav2Vec2Model(feature_extractor: torch.nn.Module, encoder: torch.nn.Module, aux: Optional[torch.nn.Module] = None) Encoder mo...
import logging from typing import Optional, Tuple, List import torch from torch import Tensor, nn from torch.nn import Module _LG = logging.getLogger(__name__) class LayerNorm(nn.LayerNorm): """Layer norm with transpose""" def forward(self, input: Tensor) -> Tensor: x = input.transpose(-2, -1) ...
from .import_huggingface import import_huggingface_model from .import_fairseq import import_fairseq_model __all__ = [ 'import_huggingface_model', 'import_fairseq_model', ]
"""Import Hugging Face transformers's wav2vec2.0 pretrained weights to torchaudios's format. """ import logging from torch.nn import Module from ..model import Wav2Vec2Model, wav2vec2_model _LG = logging.getLogger(__name__) def _get_config(cfg): config = { 'extractor_mode': f'{cfg.feat_extract_norm}_no...
"""Import fariseq's wav2vec2.0 pretrained weights to torchaudios's format. For this module to work, you need `fairseq`. """ import re from torch.nn import Module from ..model import Wav2Vec2Model, wav2vec2_model def _parse_config(w2v_model): encoder = w2v_model.encoder conv_layers = w2v_model.feature_extra...
import math from typing import List, Optional, Tuple import torch __all__ = ["Emformer"] def _lengths_to_padding_mask(lengths: torch.Tensor) -> torch.Tensor: batch_size = lengths.shape[0] max_length = int(torch.max(lengths).item()) padding_mask = torch.arange( max_length, device=lengths.device,...
from .emformer import Emformer __all__ = ["Emformer"]
from . import kaldi __all__ = [ 'kaldi', ]
from typing import Tuple import math import torch from torch import Tensor import torchaudio __all__ = [ 'get_mel_banks', 'inverse_mel_scale', 'inverse_mel_scale_scalar', 'mel_scale', 'mel_scale_scalar', 'spectrogram', 'fbank', 'mfcc', 'vtln_warp_freq', 'vtln_warp_mel_freq', ]...
import os from typing import List, Tuple, Optional import torch import torchaudio from torchaudio._internal import module_utils as _mod_utils from torchaudio.utils.sox_utils import list_effects @_mod_utils.requires_sox() def init_sox_effects(): """Initialize resources required to use sox effects. Note: ...
from torchaudio._internal import module_utils as _mod_utils from .sox_effects import ( init_sox_effects, shutdown_sox_effects, effect_names, apply_effects_tensor, apply_effects_file, ) if _mod_utils.is_sox_available(): import atexit init_sox_effects() atexit.register(shutdown_sox_effec...
import math import warnings from typing import Optional import torch from torch import Tensor def _dB2Linear(x: float) -> float: return math.exp(x * math.log(10) / 20.0) def _generate_wave_table( wave_type: str, data_type: str, table_size: int, min: float, max: float, phase: float, ...
from .functional import ( amplitude_to_DB, compute_deltas, compute_kaldi_pitch, create_dct, melscale_fbanks, linear_fbanks, DB_to_amplitude, detect_pitch_frequency, inverse_spectrogram, griffinlim, mask_along_axis, mask_along_axis_iid, mu_law_encoding, mu_law_deco...
# -*- coding: utf-8 -*- from collections.abc import Sequence import io import math import warnings from typing import Optional, Tuple import torch from torch import Tensor from torchaudio._internal import module_utils as _mod_utils import torchaudio __all__ = [ "spectrogram", "inverse_spectrogram", "grif...
#!/usr/bin/env python3 """ This script should use a very simple, functional programming style. Avoid Jinja macros in favor of native Python functions. Don't go overboard on code generation; use Python only to generate content that can't be easily declared statically using CircleCI's YAML API. Data declarations (e.g....
#!/usr/bin/env python """A wrapper script around clang-format, suitable for linting multiple files and to use for continuous integration. This is an alternative API for the clang-format command line. It runs over multiple files and directories in parallel. A diff output is produced and a sensible exit code is returned...
import asyncio import aiohttp # type: ignore import math import os import datetime import re import boto3 # type: ignore import json import io import argparse import gzip import os from cryptography.hazmat.backends import default_backend import jwt import requests import time from typing import * BUCKET = os.getenv...
#!/usr/bin/env python3 from pathlib import Path import jinja2 import os from dataclasses import dataclass from typing import Any REPO_ROOT = Path(__file__).resolve().parent.parent.parent GITHUB_DIR = REPO_ROOT / ".github" CRONS = { "5 minutes": "*/5 * * * *", "1 hour": "0 * * * *", } @dataclass class Bra...
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree.
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import sys from setuptools import find_packages, setup def get_version(): return ...
#!/usr/bin/env python3 from __future__ import absolute_import, division, print_function, unicode_literals import json import logging import os import os.path import shutil import subprocess import tarfile import textwrap import urllib.request import uuid import zipfile from os import walk from shutil import copyfile ...
from __future__ import absolute_import, division, print_function, unicode_literals import util # Create a Kubernetes specs and YAML job file based on user inputs def configure(args): util.configure_yaml(args) util.configure_json(args) # Deploys a Kubernetes cluster def setup(args): # Install AKS Engine...
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # PyTorch documentation build configuration file, created by # sphinx-quickstart on Fri Dec 23 13:31:47 2016. # # This file is execfile()d with the current directory set to its # containing dir. # # Note that not all possible configuration values are present in this # au...
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. """ For each rst file, generates a corresponding rst file that redirects http://pytorch.o...
#!/usr/bin/env python3 import io import os import pprint import sys import torch.distributed as dist if __name__ == "__main__": env_dict = { k: os.environ[k] for k in ( "LOCAL_RANK", "RANK", "GROUP_RANK", "WORLD_SIZE", "MASTER_ADDR", ...
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. r""" Source: `pytorch imagenet example <https://github.com/pytorch/examples/blob/master/i...
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import sys import time def wait_for(msg, timeout: float = 300, interval: int = 1, print...
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import getpass import logging import os import random import string from jinja2 import ...
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree.
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import argparse import getpass import json import logging import os import sys from os.pa...
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import logging import os import shutil import tarfile as tar import tempfile log = logg...
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import logging import os from enum import Enum, unique from jinja2 import Template from ...
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import abc import boto3 class AwsSessionProvider: """ Provides AWS credentials...
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. from .session import AwsSessionProvider def get_session(region): return AwsSessionP...
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree.
#!/usr/bin/env/python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. from torch.distributed.launcher.api import ( # noqa F401 elastic_launch, launch...
#!/usr/bin/env/python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import os os.environ["LOGLEVEL"] = "INFO" # Since logger initialized during imoprt stat...
from subprocess import check_output, STDOUT, CalledProcessError import sys import pytest import glob PYTHON_CODE_DIR = "python_code" ALL_FILES = glob.glob(PYTHON_CODE_DIR + "/*.py") @pytest.mark.parametrize('file_path', ALL_FILES) def test_run_file(file_path): if 'nvidia' in file_path: # FIXME: NVIDIA m...
valid_tags = ['vision', 'nlp', 'generative', 'audio', 'scriptable', ]
import argparse import os import glob from urllib.request import urlopen, HTTPError from tags import valid_tags import yaml import mistune class ValidMD: def __init__(self, filename): self.filename = filename self.required_user_fields = ['title', 'summary', 'image', 'author', ...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import torch.nn as nn from elf.options import auto_import_options, PyOptionSpec from rlpytorch import Model from elfg...
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import os from elf import GCWrapper, ContextArgs, MoreLabels from elf.o...
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import os from elf import GCWrapper, ContextArgs, MoreLabels from elf.o...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import torch.nn as nn from torch.autograd import Variable from elf.options import auto_import_options, PyOptionSpec fr...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import torch.nn as nn from elf.options import auto_import_options, PyOptionSpec from rlpytorch import Model from elfg...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import os import torch import torch.nn as nn import torch.distributed as dist from elf.options import auto_import_opt...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import torch.nn as nn from torch.autograd import Variable import elf.logging as logging from elf.options import auto_i...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. from .model_base import Model from .model_loader import ModelLoader, load_env from .model_interface import ModelInterfa...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import os from collections import OrderedDict from copy import deepcopy from time import sleep import torch import tor...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import importlib import pprint import random import time import torch import warnings from elf.options import import_o...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. from collections import deque import torch import torch.cuda import torch.optim from elf.options import auto_import_o...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. from torch.autograd import Variable from elf.options import auto_import_options, PyOptionSpec from .utils import add_e...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. from elf.options import auto_import_options, PyOptionSpec from .policy_gradient import PolicyGradient from .discounted_...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import torch.nn as nn from torch.autograd import Variable from elf.options import auto_import_options, PyOptionSpec f...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. from .actor_critic import ActorCritic from .rnn_actor_critic import RNNActorCritic from .q_learning import Q_learning f...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. from elf.options import auto_import_options, PyOptionSpec class DiscountedReward(object): @classmethod def ge...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. def average_norm_clip(grad, clip_val): ''' Compute the norm and clip it if necessary. The first dimension ...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import torch import torch.nn as nn from torch.autograd import Variable from elf.options import auto_import_options, Py...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import torch.nn as nn from torch.autograd import Variable from elf.options import auto_import_options, PyOptionSpec fr...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. from .single_process import SingleProcessRun # from .multi_process import MultiProcessRun from .eval_iters import EvalI...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. from elf.options import auto_import_options, PyOptionSpec from ..stats import Stats class EvalItersBasic(object): ...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import tqdm from elf.options import auto_import_options, PyOptionSpec from .parameter_server import SharedData class...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. # XXX hack fix path import os import random import sys import torch.multiprocessing as _mp import utils_elf sys.pat...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import threading from elf.options import auto_import_options, PyOptionSpec class SingleProcessRun(object): @clas...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. # From https://code.activestate.com/recipes/577504/ from __future__ import print_function from sys import getsizeof, st...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. from .hist_states import HistState
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import math import queue from collections import defaultdict, Counter from datetime import datetime import numpy as np...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. from collections import defaultdict, deque class HistState: def __init__(self, T, init_state_func=None): ...
# Copyright (c) 2018-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import torch from rlpytorch import Model def apply_nonrecursive(module, fn): """Applies a given function only to ...