Some checks failed
Self-hosted runner (nightly-past-ci-caller) / Get number (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.11 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.10 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.9 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.8 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.7 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.6 (push) Has been cancelled
Self-hosted runner (nightly-past-ci-caller) / TensorFlow 2.5 (push) Has been cancelled
Self-hosted runner (benchmark) / Benchmark (aws-g5-4xlarge-cache) (push) Has been cancelled
Build documentation / build (push) Has been cancelled
Build documentation / build_other_lang (push) Has been cancelled
CodeQL Security Analysis / CodeQL Analysis (push) Has been cancelled
New model PR merged notification / Notify new model (push) Has been cancelled
PR CI / pr-ci (push) Has been cancelled
Slow tests on important models (on Push - A10) / Get all modified files (push) Has been cancelled
Secret Leaks / trufflehog (push) Has been cancelled
Update Transformers metadata / build_and_package (push) Has been cancelled
Slow tests on important models (on Push - A10) / Model CI (push) Has been cancelled
Check Tiny Models / Check tiny models (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Model CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Pipeline CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Example CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / DeepSpeed CI (push) Has been cancelled
Self-hosted runner (Intel Gaudi3 scheduled CI caller) / Trainer/FSDP CI (push) Has been cancelled
Nvidia CI - Flash Attn / Setup (push) Has been cancelled
Nvidia CI - Flash Attn / Model CI (push) Has been cancelled
Nvidia CI / Setup (push) Has been cancelled
Nvidia CI / Model CI (push) Has been cancelled
Nvidia CI / Torch pipeline CI (push) Has been cancelled
Nvidia CI / Example CI (push) Has been cancelled
Nvidia CI / Trainer/FSDP CI (push) Has been cancelled
Nvidia CI / DeepSpeed CI (push) Has been cancelled
Nvidia CI / Quantization CI (push) Has been cancelled
Nvidia CI / Kernels CI (push) Has been cancelled
Doctests / Setup (push) Has been cancelled
Doctests / Call doctest jobs (push) Has been cancelled
Doctests / Send results to webhook (push) Has been cancelled
Extras Smoke Test / Get supported Python versions (push) Has been cancelled
Extras Smoke Test / Test extras on Python ${{ matrix.python-version }} (push) Has been cancelled
Extras Smoke Test / Check Slack token availability (push) Has been cancelled
Extras Smoke Test / Notify failures to Slack (push) Has been cancelled
Self-hosted runner (AMD scheduled CI caller) / Trigger Scheduled AMD CI (push) Has been cancelled
Stale Bot / Close Stale Issues (push) Has been cancelled
114 lines
3.5 KiB
Python
114 lines
3.5 KiB
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 required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
"""
|
|
Worker script for eval/predict ordering tests.
|
|
|
|
Verifies that distributed eval/predict returns all samples in the correct order.
|
|
|
|
Run via torchrun or accelerate launch.
|
|
"""
|
|
|
|
import torch
|
|
import torch.nn as nn
|
|
from torch.utils.data import Dataset
|
|
|
|
from transformers import EvalPrediction, HfArgumentParser, Trainer, TrainingArguments
|
|
from transformers.utils import logging
|
|
|
|
|
|
logger = logging.get_logger(__name__)
|
|
|
|
|
|
class DummyDataset(Dataset):
|
|
def __init__(self, length: int = 101):
|
|
self.length = length
|
|
|
|
def __len__(self):
|
|
return self.length
|
|
|
|
def __getitem__(self, i) -> int:
|
|
return i
|
|
|
|
|
|
class DummyDataCollator:
|
|
def __call__(self, features):
|
|
return {"input_ids": torch.tensor(features), "labels": torch.tensor(features)}
|
|
|
|
|
|
class DummyModel(nn.Module):
|
|
def __init__(self):
|
|
super().__init__()
|
|
# Add some (unused) params otherwise DDP will complain.
|
|
self.fc = nn.Linear(120, 80)
|
|
|
|
def forward(self, input_ids, labels=None):
|
|
if labels is not None:
|
|
return torch.tensor(0.0, device=input_ids.device), input_ids
|
|
else:
|
|
return input_ids
|
|
|
|
|
|
if __name__ == "__main__":
|
|
parser = HfArgumentParser((TrainingArguments,))
|
|
training_args = parser.parse_args_into_dataclasses()[0]
|
|
|
|
for dataset_length in [49, 7]:
|
|
dataset = DummyDataset(dataset_length)
|
|
|
|
def compute_metrics(p: EvalPrediction) -> dict:
|
|
sequential = list(range(len(dataset)))
|
|
success = p.predictions.tolist() == sequential and p.label_ids.tolist() == sequential
|
|
if not success and training_args.local_process_index == 0:
|
|
logger.warning(
|
|
"Predictions and/or labels do not match expected results:\n - predictions: "
|
|
f"{p.predictions.tolist()}\n - labels: {p.label_ids.tolist()}\n - expected: {sequential}"
|
|
)
|
|
return {"success": success}
|
|
|
|
trainer = Trainer(
|
|
model=DummyModel(),
|
|
args=training_args,
|
|
data_collator=DummyDataCollator(),
|
|
eval_dataset=dataset,
|
|
compute_metrics=compute_metrics,
|
|
)
|
|
metrics = trainer.evaluate()
|
|
logger.info(metrics)
|
|
if metrics["eval_success"] is not True:
|
|
logger.error(metrics)
|
|
exit(1)
|
|
|
|
p = trainer.predict(dataset)
|
|
logger.info(p.metrics)
|
|
if p.metrics["test_success"] is not True:
|
|
logger.error(p.metrics)
|
|
exit(1)
|
|
|
|
trainer.args.eval_accumulation_steps = 2
|
|
|
|
metrics = trainer.evaluate()
|
|
logger.info(metrics)
|
|
if metrics["eval_success"] is not True:
|
|
logger.error(metrics)
|
|
exit(1)
|
|
|
|
p = trainer.predict(dataset)
|
|
logger.info(p.metrics)
|
|
if p.metrics["test_success"] is not True:
|
|
logger.error(p.metrics)
|
|
exit(1)
|
|
|
|
trainer.args.eval_accumulation_steps = None
|