Skip to content

Commit 334b762

Browse files
committed
Update the licenses
Signed-off-by: Samet Akcay <[email protected]>
1 parent eaf0df4 commit 334b762

File tree

19 files changed

+19
-19
lines changed

19 files changed

+19
-19
lines changed

src/anomalib/callbacks/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
- :mod:`anomalib.callbacks.timer`: Timer callback
3535
"""
3636

37-
# Copyright (C) 2022 Intel Corporation
37+
# Copyright (C) 2022-2024 Intel Corporation
3838
# SPDX-License-Identifier: Apache-2.0
3939

4040
import logging

src/anomalib/callbacks/graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
(e.g., :class:`PaDiM`).
3333
"""
3434

35-
# Copyright (C) 2022 Intel Corporation
35+
# Copyright (C) 2022-2024 Intel Corporation
3636
# SPDX-License-Identifier: Apache-2.0
3737

3838
import torch

src/anomalib/callbacks/model_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
The state dict should contain a ``"state_dict"`` key with the model weights.
2121
"""
2222

23-
# Copyright (C) 2022 Intel Corporation
23+
# Copyright (C) 2022-2024 Intel Corporation
2424
# SPDX-License-Identifier: Apache-2.0
2525

2626
import logging
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Integration NNCF."""
22

3-
# Copyright (C) 2022 Intel Corporation
3+
# Copyright (C) 2022-2024 Intel Corporation
44
# SPDX-License-Identifier: Apache-2.0

src/anomalib/callbacks/nncf/callback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
PyTorch module to be compressed.
1010
"""
1111

12-
# Copyright (C) 2022 Intel Corporation
12+
# Copyright (C) 2022-2024 Intel Corporation
1313
# SPDX-License-Identifier: Apache-2.0
1414

1515
import subprocess # nosec B404

src/anomalib/callbacks/tiler_configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
It will raise a :exc:`ValueError` if used with a model that doesn't support tiling.
2727
"""
2828

29-
# Copyright (C) 2022 Intel Corporation
29+
# Copyright (C) 2022-2024 Intel Corporation
3030
# SPDX-License-Identifier: Apache-2.0
3131

3232
from collections.abc import Sequence

src/anomalib/callbacks/timer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
- Batch size is included in throughput logging for reference
2222
"""
2323

24-
# Copyright (C) 2022 Intel Corporation
24+
# Copyright (C) 2022-2024 Intel Corporation
2525
# SPDX-License-Identifier: Apache-2.0
2626

2727
import logging

src/anomalib/cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Anomalib CLI."""
22

3-
# Copyright (C) 2022 Intel Corporation
3+
# Copyright (C) 2022-2024 Intel Corporation
44
# SPDX-License-Identifier: Apache-2.0
55

66
from .cli import AnomalibCLI

src/anomalib/cli/utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Anomalib CLI Utils."""
22

3-
# Copyright (C) 2023 Intel Corporation
3+
# Copyright (C) 2023-2024 Intel Corporation
44
# SPDX-License-Identifier: Apache-2.0
55

66
from .help_formatter import CustomHelpFormatter

src/anomalib/cli/utils/help_formatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
including rich text formatting and customized help output for different verbosity levels.
55
"""
66

7-
# Copyright (C) 2023 Intel Corporation
7+
# Copyright (C) 2023-2024 Intel Corporation
88
# SPDX-License-Identifier: Apache-2.0
99

1010
import argparse

src/anomalib/cli/utils/openvino.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
It handles the integration of OpenVINO Model Optimizer parameters into the command line interface.
55
"""
66

7-
# Copyright (C) 2023 Intel Corporation
7+
# Copyright (C) 2023-2024 Intel Corporation
88
# SPDX-License-Identifier: Apache-2.0
99

1010
import logging

src/anomalib/data/datamodules/depth/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Anomalib Depth Data Modules."""
22

3-
# Copyright (C) 2023 Intel Corporation
3+
# Copyright (C) 2023-2024 Intel Corporation
44
# SPDX-License-Identifier: Apache-2.0
55

66
from enum import Enum

src/anomalib/data/utils/generators/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
>>> mask = generator.generate(256, 256)
2121
"""
2222

23-
# Copyright (C) 2022 Intel Corporation
23+
# Copyright (C) 2022-2024 Intel Corporation
2424
# SPDX-License-Identifier: Apache-2.0
2525

2626
from .perlin import PerlinAnomalyGenerator, generate_perlin_noise

src/anomalib/deploy/inferencers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
>>> predictions = model.predict(image="path/to/image.jpg")
1414
"""
1515

16-
# Copyright (C) 2022 Intel Corporation
16+
# Copyright (C) 2022-2024 Intel Corporation
1717
# SPDX-License-Identifier: Apache-2.0
1818

1919
from .base_inferencer import Inferencer

src/anomalib/utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
- ``visualization``: Classes for visualizing detection results
2424
"""
2525

26-
# Copyright (C) 2022 Intel Corporation
26+
# Copyright (C) 2022-2024 Intel Corporation
2727
# SPDX-License-Identifier: Apache-2.0

src/anomalib/utils/cv/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
>>> labels = connected_components_cpu(mask)
1717
"""
1818

19-
# Copyright (C) 2022 Intel Corporation
19+
# Copyright (C) 2022-2024 Intel Corporation
2020
# SPDX-License-Identifier: Apache-2.0
2121

2222
from .connected_components import connected_components_cpu, connected_components_gpu

src/anomalib/utils/cv/connected_components.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
>>> print(labels.unique()) # Should show [0, 1] for background and one component
1717
"""
1818

19-
# Copyright (C) 2022 Intel Corporation
19+
# Copyright (C) 2022-2024 Intel Corporation
2020
# SPDX-License-Identifier: Apache-2.0
2121

2222
import cv2

src/anomalib/utils/normalization/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
detection algorithms.
2121
"""
2222

23-
# Copyright (C) 2022 Intel Corporation
23+
# Copyright (C) 2022-2024 Intel Corporation
2424
# SPDX-License-Identifier: Apache-2.0
2525

2626
from enum import Enum

tests/unit/cli/test_installation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Tests for installation utils."""
22

3-
# Copyright (C) 2023 Intel Corporation
3+
# Copyright (C) 2023-2024 Intel Corporation
44
# SPDX-License-Identifier: Apache-2.0
55

66
import os

0 commit comments

Comments
 (0)