python_code
stringlengths
0
66.4k
# 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 hashlib from pathlib import Path from access.preprocess import get_parallel_file_pair_preprocessor from access.pr...
# 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 bz2 import gzip import os from pathlib import Path import shutil import sys import tarfile import tempfile 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. # from glob import glob import os from pathlib import Path import shutil import tempfile import numpy as np from access.t...
# 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 collections import defaultdict from functools import lru_cache import shutil from nevergrad.instrumentation 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. # from collections import defaultdict import os from pathlib import Path import random import re import shutil import tempf...
# 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 contextlib import contextmanager, AbstractContextManager from fcntl import flock, LOCK_EX, LOCK_UN import inspect im...
# 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. # # TODO: Move to utils/training.py from functools import wraps import time def print_method_name(func): '''Decorator...
# 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 access.utils.helpers import harmonic_mean # Tranforms take a value and cast it to a score between 0 and 1, the hig...
# 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 easse.cli import evaluate_system_output from access.preprocess import lowercase_file, to_lrb_rrb_file from access.r...
# 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 fileinput from access.preprocessors import get_preprocessors from access.resources.prepare import prepare_models ...
# 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 access.fairseq.main import fairseq_train_and_evaluate from access.resources.prepare import prepare_wikilarge, prepar...
# 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 access.evaluation.general import evaluate_simplifier_on_turkcorpus from access.preprocessors import get_preprocessor...