repo stringlengths 2 99 | file stringlengths 13 225 | code stringlengths 0 18.3M | file_length int64 0 18.3M | avg_line_length float64 0 1.36M | max_line_length int64 0 4.26M | extension_type stringclasses 1
value |
|---|---|---|---|---|---|---|
robust-transformers | robust-transformers-main/tests/auto/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/auto/test_tokenization_auto.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 16,520 | 45.407303 | 119 | py |
robust-transformers | robust-transformers-main/tests/auto/test_modeling_flax_auto.py | # Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 applicabl... | 4,171 | 39.901961 | 108 | py |
robust-transformers | robust-transformers-main/tests/auto/test_modeling_tf_pytorch.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 10,044 | 41.563559 | 114 | py |
robust-transformers | robust-transformers-main/tests/auto/test_modeling_auto.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 17,467 | 43.335025 | 119 | py |
robust-transformers | robust-transformers-main/tests/roberta/test_tokenization_roberta.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 14,562 | 46.904605 | 113 | py |
robust-transformers | robust-transformers-main/tests/roberta/test_modeling_flax_roberta.py | # Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 applicabl... | 5,135 | 34.916084 | 114 | py |
robust-transformers | robust-transformers-main/tests/roberta/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/roberta/test_modeling_roberta.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 22,459 | 39.250896 | 117 | py |
robust-transformers | robust-transformers-main/tests/roberta/test_modeling_tf_roberta.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 27,390 | 38.8125 | 117 | py |
robust-transformers | robust-transformers-main/tests/sagemaker/conftest.py | # we define a fixture function below and it will be "used" by
# referencing its name from tests
import os
import pytest
from attr import dataclass
os.environ["AWS_DEFAULT_REGION"] = "us-east-1" # defaults region
@dataclass
class SageMakerTestEnvironment:
framework: str
role = "arn:aws:iam::558105141721:... | 2,183 | 32.090909 | 148 | py |
robust-transformers | robust-transformers-main/tests/sagemaker/test_single_node_gpu.py | import json
import os
import subprocess
import unittest
from ast import literal_eval
import pytest
from parameterized import parameterized_class
from . import is_sagemaker_available
if is_sagemaker_available():
from sagemaker import Session, TrainingJobAnalytics
from sagemaker.huggingface import HuggingFac... | 3,554 | 35.649485 | 117 | py |
robust-transformers | robust-transformers-main/tests/sagemaker/test_multi_node_data_parallel.py | import json
import os
import subprocess
import unittest
from ast import literal_eval
import pytest
from parameterized import parameterized, parameterized_class
from . import is_sagemaker_available
if is_sagemaker_available():
from sagemaker import Session, TrainingJobAnalytics
from sagemaker.huggingface im... | 4,254 | 37.333333 | 118 | py |
robust-transformers | robust-transformers-main/tests/sagemaker/__init__.py | import importlib
def is_sagemaker_available():
return importlib.util.find_spec("sagemaker") is not None
| 110 | 17.5 | 60 | py |
robust-transformers | robust-transformers-main/tests/sagemaker/test_multi_node_model_parallel.py | import json
import os
import subprocess
import unittest
from ast import literal_eval
import pytest
from parameterized import parameterized, parameterized_class
from . import is_sagemaker_available
if is_sagemaker_available():
from sagemaker import Session, TrainingJobAnalytics
from sagemaker.huggingface im... | 4,521 | 35.176 | 117 | py |
robust-transformers | robust-transformers-main/tests/sagemaker/scripts/pytorch/run_glue_model_parallelism.py | #!/usr/bin/env python
# coding=utf-8
# Copyright 2021 The HuggingFace Inc. team. All rights reserved.
#
# 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/LI... | 23,566 | 43.466038 | 119 | py |
robust-transformers | robust-transformers-main/tests/sagemaker/scripts/pytorch/run_ddp.py | import json
import logging
import os
import subprocess
from argparse import ArgumentParser
logger = logging.getLogger(__name__)
def parse_args():
parser = ArgumentParser()
parsed, unknown = parser.parse_known_args()
for arg in unknown:
if arg.startswith(("-", "--")):
parser.add_argum... | 1,468 | 26.716981 | 102 | py |
robust-transformers | robust-transformers-main/tests/sagemaker/scripts/tensorflow/run_tf.py | import argparse
import logging
import sys
import time
import tensorflow as tf
from datasets import load_dataset
from transformers import AutoTokenizer, TFAutoModelForSequenceClassification
if __name__ == "__main__":
parser = argparse.ArgumentParser()
# Hyperparameters sent by the client are passed as comm... | 3,690 | 39.119565 | 112 | py |
robust-transformers | robust-transformers-main/tests/sagemaker/scripts/tensorflow/run_tf_dist.py | import argparse
import logging
import os
import sys
import time
import tensorflow as tf
from datasets import load_dataset
from tqdm import tqdm
from transformers import AutoTokenizer, TFAutoModelForSequenceClassification
from transformers.file_utils import is_sagemaker_dp_enabled
if os.environ.get("SDP_ENABLED") or... | 7,331 | 36.6 | 110 | py |
robust-transformers | robust-transformers-main/tests/visual_bert/test_modeling_visual_bert.py | # coding=utf-8
# Copyright 2021 The HuggingFace Inc. team. All rights reserved.
#
# 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 r... | 28,466 | 40.436681 | 119 | py |
robust-transformers | robust-transformers-main/tests/visual_bert/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/canine/test_tokenization_canine.py | # coding=utf-8
# Copyright 2021 Google AI and HuggingFace Inc. team.
#
# 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 ... | 14,370 | 45.964052 | 208 | py |
robust-transformers | robust-transformers-main/tests/canine/test_modeling_canine.py | # coding=utf-8
# Copyright 2021 The HuggingFace Inc. team. All rights reserved.
#
# 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 r... | 37,307 | 68.996248 | 8,017 | py |
robust-transformers | robust-transformers-main/tests/canine/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/roformer/test_modeling_flax_roformer.py | # Copyright 2021 The HuggingFace Team. All rights reserved.
#
# 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 applicabl... | 5,860 | 34.737805 | 114 | py |
robust-transformers | robust-transformers-main/tests/roformer/test_tokenization_roformer.py | # coding=utf-8
# Copyright 2021 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 2,848 | 37.5 | 98 | py |
robust-transformers | robust-transformers-main/tests/roformer/test_modeling_roformer.py | # coding=utf-8
# Copyright 2021 The HuggingFace Inc. team. All rights reserved.
#
# 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 r... | 21,929 | 38.301075 | 117 | py |
robust-transformers | robust-transformers-main/tests/roformer/test_modeling_tf_roformer.py | # coding=utf-8
# Copyright 2021 The HuggingFace Inc. team. All rights reserved.
#
# 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 r... | 15,523 | 37.616915 | 117 | py |
robust-transformers | robust-transformers-main/tests/roformer/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/plbart/test_tokenization_plbart.py | # Copyright 2022 The HuggingFace Team. All rights reserved.
#
# 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 applicabl... | 12,791 | 34.337017 | 119 | py |
robust-transformers | robust-transformers-main/tests/plbart/test_modeling_plbart.py | # coding=utf-8
# Copyright 2022, The HuggingFace Inc. team. All rights reserved.
#
# 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 ... | 25,673 | 39.559242 | 123 | py |
robust-transformers | robust-transformers-main/tests/plbart/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/xlm_prophetnet/test_tokenization_xlm_prophetnet.py | # coding=utf-8
# Copyright 2020 The HuggingFace Inc. team, The Microsoft Research team.
#
# 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
#
# ... | 7,681 | 47.314465 | 2,396 | py |
robust-transformers | robust-transformers-main/tests/xlm_prophetnet/test_modeling_xlm_prophetnet.py | # coding=utf-8
# Copyright 2020 The HuggingFace Inc. team, The Microsoft Research team.
#
# 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
#
# ... | 7,088 | 48.573427 | 350 | py |
robust-transformers | robust-transformers-main/tests/xlm_prophetnet/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/megatron_gpt2/test_modeling_megatron_gpt2.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 2,656 | 29.895349 | 115 | py |
robust-transformers | robust-transformers-main/tests/megatron_gpt2/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/maskformer/test_modeling_maskformer.py | # coding=utf-8
# Copyright 2022 The HuggingFace Inc. team. All rights reserved.
#
# 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 r... | 16,921 | 39.775904 | 117 | py |
robust-transformers | robust-transformers-main/tests/maskformer/test_feature_extraction_maskformer.py | # coding=utf-8
# Copyright 2022 HuggingFace 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 ag... | 15,083 | 39.117021 | 119 | py |
robust-transformers | robust-transformers-main/tests/maskformer/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/xlm_roberta/test_modeling_xlm_roberta.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 3,061 | 42.742857 | 116 | py |
robust-transformers | robust-transformers-main/tests/xlm_roberta/test_modeling_flax_xlm_roberta.py | # coding=utf-8
# Copyright 2022 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 1,889 | 38.375 | 113 | py |
robust-transformers | robust-transformers-main/tests/xlm_roberta/test_modeling_tf_xlm_roberta.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 2,028 | 33.982759 | 116 | py |
robust-transformers | robust-transformers-main/tests/xlm_roberta/test_tokenization_xlm_roberta.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 14,722 | 41.552023 | 2,392 | py |
robust-transformers | robust-transformers-main/tests/xlm_roberta/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/yoso/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/yoso/test_modeling_yoso.py | # coding=utf-8
# Copyright 2022 The HuggingFace Inc. team. All rights reserved.
#
# 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 r... | 15,139 | 36.755611 | 117 | py |
robust-transformers | robust-transformers-main/tests/pegasus/test_modeling_tf_pegasus.py | # coding=utf-8
# Copyright 2021 The HuggingFace Inc. team. All rights reserved.
#
# 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 r... | 17,751 | 46.465241 | 1,802 | py |
robust-transformers | robust-transformers-main/tests/pegasus/test_modeling_flax_pegasus.py | # coding=utf-8
# Copyright 2021 The HuggingFace Inc. team. All rights reserved.
#
# 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 r... | 15,721 | 45.377581 | 1,806 | py |
robust-transformers | robust-transformers-main/tests/pegasus/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/pegasus/test_tokenization_pegasus.py | # Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 applicabl... | 10,829 | 50.818182 | 1,929 | py |
robust-transformers | robust-transformers-main/tests/pegasus/test_modeling_pegasus.py | # coding=utf-8
# Copyright 2021, The HuggingFace Inc. team. All rights reserved.
#
# 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 ... | 24,189 | 42.66426 | 1,802 | py |
robust-transformers | robust-transformers-main/tests/herbert/test_tokenization_herbert.py | # coding=utf-8
# Copyright 2018 The Google AI Language Team Authors, Allegro.pl and The HuggingFace Inc. team.
#
# 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/li... | 4,454 | 33.534884 | 104 | py |
robust-transformers | robust-transformers-main/tests/herbert/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/onnx/test_onnx_v2.py | from pathlib import Path
from tempfile import NamedTemporaryFile
from unittest import TestCase
from unittest.mock import patch
import pytest
from parameterized import parameterized
from transformers import AutoConfig, AutoFeatureExtractor, AutoTokenizer, is_tf_available, is_torch_available
from transformers.onnx impo... | 13,590 | 40.435976 | 151 | py |
robust-transformers | robust-transformers-main/tests/onnx/test_onnx.py | # Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 applicabl... | 8,104 | 40.352041 | 112 | py |
robust-transformers | robust-transformers-main/tests/onnx/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/big_bird/test_modeling_big_bird.py | # coding=utf-8
# Copyright 2021 The HuggingFace Inc. team. All rights reserved.
#
# 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 r... | 42,059 | 45.475138 | 1,570 | py |
robust-transformers | robust-transformers-main/tests/big_bird/test_modeling_flax_big_bird.py | # Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 applicabl... | 7,191 | 36.264249 | 114 | py |
robust-transformers | robust-transformers-main/tests/big_bird/test_tokenization_big_bird.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 10,724 | 44.253165 | 2,209 | py |
robust-transformers | robust-transformers-main/tests/big_bird/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/xlm/test_modeling_tf_xlm.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 12,312 | 32.459239 | 166 | py |
robust-transformers | robust-transformers-main/tests/xlm/test_tokenization_xlm.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 3,292 | 32.262626 | 93 | py |
robust-transformers | robust-transformers-main/tests/xlm/test_modeling_xlm.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 17,435 | 34.656442 | 166 | py |
robust-transformers | robust-transformers-main/tests/xlm/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/speech_encoder_decoder/test_modeling_speech_encoder_decoder.py | # coding=utf-8
# Copyright 2021 HuggingFace Inc. team.
#
# 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... | 24,186 | 39.582215 | 124 | py |
robust-transformers | robust-transformers-main/tests/speech_encoder_decoder/test_modeling_flax_speech_encoder_decoder.py | # coding=utf-8
# Copyright 2022 HuggingFace Inc. team.
#
# 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... | 28,076 | 40.595556 | 115 | py |
robust-transformers | robust-transformers-main/tests/speech_encoder_decoder/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/speech_to_text_2/test_modeling_speech_to_text_2.py | # coding=utf-8
# Copyright 2021 The HuggingFace Inc. team. All rights reserved.
#
# 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 r... | 7,338 | 33.617925 | 115 | py |
robust-transformers | robust-transformers-main/tests/speech_to_text_2/test_tokenization_speech_to_text_2.py | # Copyright 2021 The HuggingFace Team. All rights reserved.
#
# 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 applicabl... | 3,848 | 38.27551 | 119 | py |
robust-transformers | robust-transformers-main/tests/speech_to_text_2/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/wav2vec2/test_feature_extraction_wav2vec2.py | # coding=utf-8
# Copyright 2021 HuggingFace 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 ag... | 9,802 | 42.376106 | 113 | py |
robust-transformers | robust-transformers-main/tests/wav2vec2/test_tokenization_wav2vec2.py | # coding=utf-8
# Copyright 2021 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 37,348 | 48.403439 | 1,215 | py |
robust-transformers | robust-transformers-main/tests/wav2vec2/test_modeling_wav2vec2.py | # coding=utf-8
# Copyright 2021 The HuggingFace Inc. team. All rights reserved.
#
# 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 r... | 65,854 | 41.350482 | 277 | py |
robust-transformers | robust-transformers-main/tests/wav2vec2/test_processor_wav2vec2.py | # Copyright 2021 The HuggingFace Team. All rights reserved.
#
# 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 applicabl... | 5,806 | 40.184397 | 117 | py |
robust-transformers | robust-transformers-main/tests/wav2vec2/test_modeling_tf_wav2vec2.py | # coding=utf-8
# Copyright 2021 The HuggingFace Inc. team. All rights reserved.
#
# 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 r... | 23,353 | 39.757417 | 200 | py |
robust-transformers | robust-transformers-main/tests/wav2vec2/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/wav2vec2/test_modeling_flax_wav2vec2.py | # Copyright 2021 The HuggingFace Team. All rights reserved.
#
# 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 applicabl... | 22,581 | 39.90942 | 200 | py |
robust-transformers | robust-transformers-main/tests/gptj/test_modeling_gptj.py | # coding=utf-8
# Copyright 2021 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 24,240 | 41.52807 | 139 | py |
robust-transformers | robust-transformers-main/tests/gptj/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/gptj/test_modeling_flax_gptj.py | # Copyright 2021 The HuggingFace Team. All rights reserved.
#
# 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 applicabl... | 14,526 | 43.155015 | 118 | py |
robust-transformers | robust-transformers-main/tests/bert/test_tokenization_bert.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 13,947 | 40.144543 | 116 | py |
robust-transformers | robust-transformers-main/tests/bert/test_modeling_flax_bert.py | # Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 applicabl... | 5,321 | 34.718121 | 114 | py |
robust-transformers | robust-transformers-main/tests/bert/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/bert/test_modeling_tf_bert.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 30,038 | 38.164276 | 117 | py |
robust-transformers | robust-transformers-main/tests/bert/test_modeling_bert.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 25,156 | 39.186901 | 119 | py |
robust-transformers | robust-transformers-main/tests/fnet/test_modeling_fnet.py | # coding=utf-8
# Copyright 2021 The HuggingFace Inc. team. All rights reserved.
#
# 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 r... | 23,242 | 40.505357 | 315 | py |
robust-transformers | robust-transformers-main/tests/fnet/test_tokenization_fnet.py | # coding=utf-8
# Copyright 2019 Hugging Face 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 a... | 23,087 | 50.079646 | 2,439 | py |
robust-transformers | robust-transformers-main/tests/fnet/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/segformer/test_modeling_segformer.py | # coding=utf-8
# Copyright 2021 The HuggingFace Inc. team. All rights reserved.
#
# 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 r... | 16,256 | 39.041872 | 117 | py |
robust-transformers | robust-transformers-main/tests/segformer/test_feature_extraction_segformer.py | # coding=utf-8
# Copyright 2021 HuggingFace 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 ag... | 12,138 | 35.127976 | 111 | py |
robust-transformers | robust-transformers-main/tests/segformer/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/barthez/test_tokenization_barthez.py | # coding=utf-8
# Copyright 2020 Ecole Polytechnique and HuggingFace Inc. team.
#
# 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 re... | 5,561 | 45.739496 | 993 | py |
robust-transformers | robust-transformers-main/tests/barthez/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/extended/test_trainer_ext.py | # Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 applicabl... | 11,198 | 35.125806 | 119 | py |
robust-transformers | robust-transformers-main/tests/fsmt/test_modeling_fsmt.py | # coding=utf-8
# Copyright 2020 Huggingface
#
# 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 ... | 21,230 | 38.316667 | 118 | py |
robust-transformers | robust-transformers-main/tests/fsmt/__init__.py | 0 | 0 | 0 | py | |
robust-transformers | robust-transformers-main/tests/fsmt/test_tokenization_fsmt.py | # coding=utf-8
# Copyright 2020 The HuggingFace Team. All rights reserved.
#
# 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 requir... | 6,445 | 37.142012 | 141 | py |
robust-transformers | robust-transformers-main/tests/ctrl/test_modeling_ctrl.py | # coding=utf-8
# Copyright 2018 Salesforce and HuggingFace Inc. team.
# 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 a... | 8,372 | 34.329114 | 117 | py |
robust-transformers | robust-transformers-main/tests/ctrl/test_tokenization_ctrl.py | # coding=utf-8
# Copyright 2018 Salesforce and HuggingFace Inc. team.
# 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 a... | 2,661 | 38.731343 | 95 | py |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.