repo stringlengths 7 90 | file_url stringlengths 81 315 | file_path stringlengths 4 228 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 14:38:15 2026-01-05 02:33:18 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/utils/test_module/custom_tokenization_fast.py | utils/test_module/custom_tokenization_fast.py | from transformers import BertTokenizerFast
from .custom_tokenization import CustomTokenizer
class CustomTokenizerFast(BertTokenizerFast):
slow_tokenizer_class = CustomTokenizer
pass
| python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/utils/test_module/custom_image_processing.py | utils/test_module/custom_image_processing.py | from transformers import CLIPImageProcessor
class CustomImageProcessor(CLIPImageProcessor):
pass
| python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/utils/test_module/custom_feature_extraction.py | utils/test_module/custom_feature_extraction.py | from transformers import Wav2Vec2FeatureExtractor
class CustomFeatureExtractor(Wav2Vec2FeatureExtractor):
pass
| python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/utils/test_module/custom_configuration.py | utils/test_module/custom_configuration.py | from transformers import PretrainedConfig
class CustomConfig(PretrainedConfig):
model_type = "custom"
def __init__(self, attribute=1, **kwargs):
self.attribute = attribute
super().__init__(**kwargs)
class NoSuperInitConfig(PretrainedConfig):
model_type = "custom"
def __init__(self,... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/utils/test_module/custom_modeling.py | utils/test_module/custom_modeling.py | import torch
from transformers import PreTrainedModel
from .custom_configuration import CustomConfig, NoSuperInitConfig
class CustomModel(PreTrainedModel):
config_class = CustomConfig
def __init__(self, config):
super().__init__(config)
self.linear = torch.nn.Linear(config.hidden_size, conf... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/utils/test_module/__init__.py | utils/test_module/__init__.py | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false | |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/utils/test_module/custom_pipeline.py | utils/test_module/custom_pipeline.py | import numpy as np
from transformers import Pipeline
def softmax(outputs):
maxes = np.max(outputs, axis=-1, keepdims=True)
shifted_exp = np.exp(outputs - maxes)
return shifted_exp / shifted_exp.sum(axis=-1, keepdims=True)
class PairClassificationPipeline(Pipeline):
def _sanitize_parameters(self, **... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/utils/test_module/custom_tokenization.py | utils/test_module/custom_tokenization.py | from transformers import BertTokenizer
class CustomTokenizer(BertTokenizer):
pass
| python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/utils/test_module/custom_processing.py | utils/test_module/custom_processing.py | from transformers import ProcessorMixin
class CustomProcessor(ProcessorMixin):
feature_extractor_class = "AutoFeatureExtractor"
tokenizer_class = "AutoTokenizer"
| python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/setup.py | hf-dev-train/transformers-main/setup.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/conftest.py | hf-dev-train/transformers-main/conftest.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/hubconf.py | hf-dev-train/transformers-main/hubconf.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/scripts/stale.py | hf-dev-train/transformers-main/scripts/stale.py | # Copyright 2021 The HuggingFace Team, the AllenNLP library authors. 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
#
... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/scripts/check_tokenizers.py | hf-dev-train/transformers-main/scripts/check_tokenizers.py | from collections import Counter
import datasets
import transformers
from transformers.convert_slow_tokenizer import SLOW_TO_FAST_CONVERTERS
from transformers.utils import logging
logging.set_verbosity_info()
TOKENIZER_CLASSES = {
name: (getattr(transformers, name), getattr(transformers, name + "Fast")) for name ... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/scripts/pegasus/build_test_sample_spm_no_bos.py | hf-dev-train/transformers-main/scripts/pegasus/build_test_sample_spm_no_bos.py | #!/usr/bin/env python
# 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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/scripts/benchmark/trainer-benchmark.py | hf-dev-train/transformers-main/scripts/benchmark/trainer-benchmark.py | #!/usr/bin/env python
# HF Trainer benchmarking tool
#
# This tool can be used to run and compare multiple dimensions of the HF Trainers args.
#
# It then prints a report once in github format with all the information that needs to be shared
# with others and second time in a console-friendly format, so it's easier to... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/scripts/distributed/torch-distributed-gpu-test.py | hf-dev-train/transformers-main/scripts/distributed/torch-distributed-gpu-test.py | #!/usr/bin/env python
#
# This a `torch.distributed` diagnostics script that checks that all GPUs in the cluster (one or
# many nodes) can talk to each other via nccl and allocate gpu memory.
#
# To run first adjust the number of processes and nodes:
#
# python -m torch.distributed.run --nproc_per_node 2 --nnodes 1 to... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/scripts/fsmt/fsmt-make-super-tiny-model.py | hf-dev-train/transformers-main/scripts/fsmt/fsmt-make-super-tiny-model.py | #!/usr/bin/env python
# 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/LICENS... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/scripts/fsmt/gen-card-facebook-wmt19.py | hf-dev-train/transformers-main/scripts/fsmt/gen-card-facebook-wmt19.py | #!/usr/bin/env python
# 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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/scripts/fsmt/fsmt-make-tiny-model.py | hf-dev-train/transformers-main/scripts/fsmt/fsmt-make-tiny-model.py | #!/usr/bin/env python
# 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/LICENS... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/scripts/fsmt/gen-card-allenai-wmt16.py | hf-dev-train/transformers-main/scripts/fsmt/gen-card-allenai-wmt16.py | #!/usr/bin/env python
# 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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/scripts/fsmt/gen-card-allenai-wmt19.py | hf-dev-train/transformers-main/scripts/fsmt/gen-card-allenai-wmt19.py | #!/usr/bin/env python
# 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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/modeling_utils.py | hf-dev-train/transformers-main/src/transformers/modeling_utils.py | # coding=utf-8
# Copyright 2018 The Google AI Language Team Authors, Facebook AI Research authors and The HuggingFace Inc. team.
# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the L... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/feature_extraction_sequence_utils.py | hf-dev-train/transformers-main/src/transformers/feature_extraction_sequence_utils.py | # coding=utf-8
# Copyright 2021 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/modeling_tf_outputs.py | hf-dev-train/transformers-main/src/transformers/modeling_tf_outputs.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/audio_utils.py | hf-dev-train/transformers-main/src/transformers/audio_utils.py | # coding=utf-8
# Copyright 2023 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/training_args_seq2seq.py | hf-dev-train/transformers-main/src/transformers/training_args_seq2seq.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/convert_pytorch_checkpoint_to_tf2.py | hf-dev-train/transformers-main/src/transformers/convert_pytorch_checkpoint_to_tf2.py | # coding=utf-8
# Copyright 2018 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/modeling_tf_utils.py | hf-dev-train/transformers-main/src/transformers/modeling_tf_utils.py | # coding=utf-8
# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.
# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a cop... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/trainer_seq2seq.py | hf-dev-train/transformers-main/src/transformers/trainer_seq2seq.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/file_utils.py | hf-dev-train/transformers-main/src/transformers/file_utils.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/image_processing_utils.py | hf-dev-train/transformers-main/src/transformers/image_processing_utils.py | # coding=utf-8
# Copyright 2022 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/keras_callbacks.py | hf-dev-train/transformers-main/src/transformers/keras_callbacks.py | import logging
import os
from pathlib import Path
from time import sleep
from typing import Callable, List, Optional, Union
import numpy as np
import tensorflow as tf
from huggingface_hub import Repository, create_repo
from packaging.version import parse
from tensorflow.keras.callbacks import Callback
from . import I... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/dependency_versions_check.py | hf-dev-train/transformers-main/src/transformers/dependency_versions_check.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/hf_argparser.py | hf-dev-train/transformers-main/src/transformers/hf_argparser.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/dependency_versions_table.py | hf-dev-train/transformers-main/src/transformers/dependency_versions_table.py | # THIS FILE HAS BEEN AUTOGENERATED. To update:
# 1. modify the `_deps` dict in setup.py
# 2. run `make deps_table_update``
deps = {
"Pillow": "Pillow",
"accelerate": "accelerate>=0.10.0",
"av": "av==9.2.0",
"beautifulsoup4": "beautifulsoup4",
"black": "black~=23.1",
"codecarbon": "codecarbon==1.... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/time_series_utils.py | hf-dev-train/transformers-main/src/transformers/time_series_utils.py | # coding=utf-8
# Copyright 2023 The HuggingFace Inc. team.
# Copyright 2018 Amazon.com, Inc. or its affiliates. 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
#
# ht... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/tf_utils.py | hf-dev-train/transformers-main/src/transformers/tf_utils.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/activations_tf.py | hf-dev-train/transformers-main/src/transformers/activations_tf.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/integrations.py | hf-dev-train/transformers-main/src/transformers/integrations.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/trainer_pt_utils.py | hf-dev-train/transformers-main/src/transformers/trainer_pt_utils.py | # coding=utf-8
# Copyright 2020-present 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/licenses/LICENSE-2.0
#
# Unless required by ap... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/processing_utils.py | hf-dev-train/transformers-main/src/transformers/processing_utils.py | # coding=utf-8
# Copyright 2022 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/training_args_tf.py | hf-dev-train/transformers-main/src/transformers/training_args_tf.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/trainer_utils.py | hf-dev-train/transformers-main/src/transformers/trainer_utils.py | # coding=utf-8
# Copyright 2020-present 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/licenses/LICENSE-2.0
#
# Unless required by ap... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/trainer_callback.py | hf-dev-train/transformers-main/src/transformers/trainer_callback.py | # coding=utf-8
# Copyright 2020-present 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/licenses/LICENSE-2.0
#
# Unless required by ap... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/feature_extraction_utils.py | hf-dev-train/transformers-main/src/transformers/feature_extraction_utils.py | # coding=utf-8
# Copyright 2021 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/dynamic_module_utils.py | hf-dev-train/transformers-main/src/transformers/dynamic_module_utils.py | # coding=utf-8
# Copyright 2021 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/training_args.py | hf-dev-train/transformers-main/src/transformers/training_args.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/convert_slow_tokenizers_checkpoints_to_fast.py | hf-dev-train/transformers-main/src/transformers/convert_slow_tokenizers_checkpoints_to_fast.py | # coding=utf-8
# Copyright 2018 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/optimization_tf.py | hf-dev-train/transformers-main/src/transformers/optimization_tf.py | # Copyright 2019 The TensorFlow Authors, The Hugging Face 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
#
# Unl... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/convert_slow_tokenizer.py | hf-dev-train/transformers-main/src/transformers/convert_slow_tokenizer.py | # coding=utf-8
# Copyright 2018 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/image_utils.py | hf-dev-train/transformers-main/src/transformers/image_utils.py | # coding=utf-8
# Copyright 2021 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/modeling_flax_pytorch_utils.py | hf-dev-train/transformers-main/src/transformers/modeling_flax_pytorch_utils.py | # coding=utf-8
# Copyright 2021 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/convert_tf_hub_seq_to_seq_bert_to_pytorch.py | hf-dev-train/transformers-main/src/transformers/convert_tf_hub_seq_to_seq_bert_to_pytorch.py | # coding=utf-8
# Copyright 2020 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/optimization.py | hf-dev-train/transformers-main/src/transformers/optimization.py | # coding=utf-8
# Copyright 2018 The Google AI Language Team Authors 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/licenses/LICEN... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/debug_utils.py | hf-dev-train/transformers-main/src/transformers/debug_utils.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/trainer_pt_utils_back.py | hf-dev-train/transformers-main/src/transformers/trainer_pt_utils_back.py | # coding=utf-8
# Copyright 2020-present 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/licenses/LICENSE-2.0
#
# Unless required by ap... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/tokenization_utils.py | hf-dev-train/transformers-main/src/transformers/tokenization_utils.py | # coding=utf-8
# Copyright 2020 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/tokenization_utils_base.py | hf-dev-train/transformers-main/src/transformers/tokenization_utils_base.py | # coding=utf-8
# Copyright 2020 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/trainer.py | hf-dev-train/transformers-main/src/transformers/trainer.py | # coding=utf-8
# Copyright 2020-present 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/licenses/LICENSE-2.0
#
# Unless required by ap... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/modeling_outputs.py | hf-dev-train/transformers-main/src/transformers/modeling_outputs.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/trainer_tf.py | hf-dev-train/transformers-main/src/transformers/trainer_tf.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/testing_utils.py | hf-dev-train/transformers-main/src/transformers/testing_utils.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/__init__.py | hf-dev-train/transformers-main/src/transformers/__init__.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/generation_tf_utils.py | hf-dev-train/transformers-main/src/transformers/generation_tf_utils.py | # coding=utf-8
# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.
# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a cop... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/deepspeed.py | hf-dev-train/transformers-main/src/transformers/deepspeed.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/modeling_tf_pytorch_utils.py | hf-dev-train/transformers-main/src/transformers/modeling_tf_pytorch_utils.py | # coding=utf-8
# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.
# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a cop... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/generation_utils.py | hf-dev-train/transformers-main/src/transformers/generation_utils.py | # coding=utf-8
# Copyright 2020 The Google AI Language Team Authors, Facebook AI Research authors and The HuggingFace Inc. team.
# Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the L... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/generation_flax_utils.py | hf-dev-train/transformers-main/src/transformers/generation_flax_utils.py | # coding=utf-8
# Copyright 2021 The Google AI Flax Team Authors, and The HuggingFace Inc. team.
# Copyright (c) 2020, NVIDIA CORPORATION. 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 o... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/modelcard.py | hf-dev-train/transformers-main/src/transformers/modelcard.py | # coding=utf-8
# Copyright 2018 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/modeling_flax_outputs.py | hf-dev-train/transformers-main/src/transformers/modeling_flax_outputs.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/convert_graph_to_onnx.py | hf-dev-train/transformers-main/src/transformers/convert_graph_to_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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/modeling_flax_utils.py | hf-dev-train/transformers-main/src/transformers/modeling_flax_utils.py | # coding=utf-8
# Copyright 2021 The Google Flax Team Authors 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/licenses/LICENSE-2.0
... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/pytorch_utils.py | hf-dev-train/transformers-main/src/transformers/pytorch_utils.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/image_transforms.py | hf-dev-train/transformers-main/src/transformers/image_transforms.py | # coding=utf-8
# Copyright 2022 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/activations.py | hf-dev-train/transformers-main/src/transformers/activations.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/tokenization_utils_fast.py | hf-dev-train/transformers-main/src/transformers/tokenization_utils_fast.py | # coding=utf-8
# Copyright 2020 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/licenses/LICENSE-2.0
#
# Unless required by applicable... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/configuration_utils.py | hf-dev-train/transformers-main/src/transformers/configuration_utils.py | # coding=utf-8
# Copyright 2018 The Google AI Language Team Authors and The HuggingFace Inc. team.
# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a cop... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/sagemaker/trainer_sm.py | hf-dev-train/transformers-main/src/transformers/sagemaker/trainer_sm.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/sagemaker/__init__.py | hf-dev-train/transformers-main/src/transformers/sagemaker/__init__.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/sagemaker/training_args_sm.py | hf-dev-train/transformers-main/src/transformers/sagemaker/training_args_sm.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/benchmark/benchmark_args_tf.py | hf-dev-train/transformers-main/src/transformers/benchmark/benchmark_args_tf.py | # coding=utf-8
# Copyright 2018 The HuggingFace Inc. team.
# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.a... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/benchmark/benchmark_args.py | hf-dev-train/transformers-main/src/transformers/benchmark/benchmark_args.py | # coding=utf-8
# Copyright 2018 The HuggingFace Inc. team.
# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.a... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/benchmark/benchmark_tf.py | hf-dev-train/transformers-main/src/transformers/benchmark/benchmark_tf.py | # coding=utf-8
# Copyright 2018 The HuggingFace Inc. team.
# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.a... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/benchmark/benchmark.py | hf-dev-train/transformers-main/src/transformers/benchmark/benchmark.py | # coding=utf-8
# Copyright 2018 The HuggingFace Inc. team.
# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.a... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/benchmark/__init__.py | hf-dev-train/transformers-main/src/transformers/benchmark/__init__.py | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false | |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/benchmark/benchmark_utils.py | hf-dev-train/transformers-main/src/transformers/benchmark/benchmark_utils.py | # This file is adapted from the AllenNLP library at https://github.com/allenai/allennlp
# Copyright 2020 The HuggingFace Team and the AllenNLP authors. 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 o... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/benchmark/benchmark_args_utils.py | hf-dev-train/transformers-main/src/transformers/benchmark/benchmark_args_utils.py | # coding=utf-8
# Copyright 2018 The HuggingFace Inc. team.
# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.a... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/commands/run.py | hf-dev-train/transformers-main/src/transformers/commands/run.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/commands/train.py | hf-dev-train/transformers-main/src/transformers/commands/train.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/commands/pt_to_tf.py | hf-dev-train/transformers-main/src/transformers/commands/pt_to_tf.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/commands/convert.py | hf-dev-train/transformers-main/src/transformers/commands/convert.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/commands/user.py | hf-dev-train/transformers-main/src/transformers/commands/user.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/commands/serving.py | hf-dev-train/transformers-main/src/transformers/commands/serving.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/commands/add_new_model_like.py | hf-dev-train/transformers-main/src/transformers/commands/add_new_model_like.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | true |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/commands/download.py | hf-dev-train/transformers-main/src/transformers/commands/download.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/commands/__init__.py | hf-dev-train/transformers-main/src/transformers/commands/__init__.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/commands/lfs.py | hf-dev-train/transformers-main/src/transformers/commands/lfs.py | """
Implementation of a custom transfer agent for the transfer type "multipart" for git-lfs.
Inspired by: github.com/cbartz/git-lfs-swift-transfer-agent/blob/master/git_lfs_swift_transfer.py
Spec is: github.com/git-lfs/git-lfs/blob/master/docs/custom-transfers.md
To launch debugger while developing:
``` [lfs "cust... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/commands/transformers_cli.py | hf-dev-train/transformers-main/src/transformers/commands/transformers_cli.py | #!/usr/bin/env python
# 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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Sreyan88/GAMA | https://github.com/Sreyan88/GAMA/blob/041c3a623c6c635e65463cef16ce0cfde72e5c57/hf-dev-train/transformers-main/src/transformers/commands/add_new_model.py | hf-dev-train/transformers-main/src/transformers/commands/add_new_model.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... | python | Apache-2.0 | 041c3a623c6c635e65463cef16ce0cfde72e5c57 | 2026-01-05T07:09:59.331526Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.