Skip to content

Commit 98198ac

Browse files
committed
correct license comments
Signed-off-by: jpcbertoldo <[email protected]>
1 parent add57db commit 98198ac

File tree

9 files changed

+66
-8
lines changed

9 files changed

+66
-8
lines changed

src/anomalib/metrics/per_image/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
author: jpcbertoldo
44
"""
55

6-
# Copyright (C) 2022 Intel Corporation
6+
# Original Code
7+
# Copyright (c) 2024 @jpcbertoldo
8+
# https://github.com/jpcbertoldo/aupimo
9+
# SPDX-License-Identifier: MIT
10+
#
11+
# Modified
12+
# Copyright (C) 2024 Intel Corporation
713
# SPDX-License-Identifier: Apache-2.0
814

915
from .binclf_curve import per_image_binclf_curve, per_image_fpr, per_image_tpr

src/anomalib/metrics/per_image/_binclf_curve_numba.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@
55
author: jpcbertoldo
66
"""
77

8-
# Copyright (C) 2022 Intel Corporation
8+
# Original Code
9+
# Copyright (c) 2024 @jpcbertoldo
10+
# https://github.com/jpcbertoldo/aupimo
11+
# SPDX-License-Identifier: MIT
12+
#
13+
# Modified
14+
# Copyright (C) 2024 Intel Corporation
915
# SPDX-License-Identifier: Apache-2.0
1016

1117
import numba

src/anomalib/metrics/per_image/_validate.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@
55
author: jpcbertoldo
66
"""
77

8-
# Copyright (C) 2022 Intel Corporation
8+
# Original Code
9+
# Copyright (c) 2024 @jpcbertoldo
10+
# https://github.com/jpcbertoldo/aupimo
11+
# SPDX-License-Identifier: MIT
12+
#
13+
# Modified
14+
# Copyright (C) 2024 Intel Corporation
915
# SPDX-License-Identifier: Apache-2.0
1016

1117
from __future__ import annotations

src/anomalib/metrics/per_image/binclf_curve.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@
1111
author: jpcbertoldo
1212
"""
1313

14-
# Copyright (C) 2022 Intel Corporation
14+
# Original Code
15+
# Copyright (c) 2024 @jpcbertoldo
16+
# https://github.com/jpcbertoldo/aupimo
17+
# SPDX-License-Identifier: MIT
18+
#
19+
# Modified
20+
# Copyright (C) 2024 Intel Corporation
1521
# SPDX-License-Identifier: Apache-2.0
1622

1723
from __future__ import annotations

src/anomalib/metrics/per_image/binclf_curve_numpy.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@
77
author: jpcbertoldo
88
"""
99

10-
# Copyright (C) 2022 Intel Corporation
10+
# Original Code
11+
# Copyright (c) 2024 @jpcbertoldo
12+
# https://github.com/jpcbertoldo/aupimo
13+
# SPDX-License-Identifier: MIT
14+
#
15+
# Modified
16+
# Copyright (C) 2024 Intel Corporation
1117
# SPDX-License-Identifier: Apache-2.0
1218

1319
import itertools

src/anomalib/metrics/per_image/pimo.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@
99
author: jpcbertoldo
1010
"""
1111

12-
# Copyright (C) 2022 Intel Corporation
12+
# Original Code
13+
# Copyright (c) 2024 @jpcbertoldo
14+
# https://github.com/jpcbertoldo/aupimo
15+
# SPDX-License-Identifier: MIT
16+
#
17+
# Modified
18+
# Copyright (C) 2024 Intel Corporation
1319
# SPDX-License-Identifier: Apache-2.0
1420

1521
from __future__ import annotations

src/anomalib/metrics/per_image/pimo_numpy.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,13 @@
2525
author: jpcbertoldo
2626
"""
2727

28-
# Copyright (C) 2022 Intel Corporation
28+
# Original Code
29+
# Copyright (c) 2024 @jpcbertoldo
30+
# https://github.com/jpcbertoldo/aupimo
31+
# SPDX-License-Identifier: MIT
32+
#
33+
# Modified
34+
# Copyright (C) 2024 Intel Corporation
2935
# SPDX-License-Identifier: Apache-2.0
3036

3137
import logging

src/anomalib/metrics/per_image/utils.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
"""Torch-oriented interfaces for `utils.py`."""
2+
3+
# Original Code
4+
# Copyright (c) 2024 @jpcbertoldo
5+
# https://github.com/jpcbertoldo/aupimo
6+
# SPDX-License-Identifier: MIT
7+
#
8+
# Modified
9+
# Copyright (C) 2024 Intel Corporation
10+
# SPDX-License-Identifier: Apache-2.0
11+
212
from __future__ import annotations
313

414
import logging

src/anomalib/metrics/per_image/utils_numpy.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
author: jpcbertoldo
44
"""
55

6-
# Copyright (C) 2022 Intel Corporation
6+
# Original Code
7+
# Copyright (c) 2024 @jpcbertoldo
8+
# https://github.com/jpcbertoldo/aupimo
9+
# SPDX-License-Identifier: MIT
10+
#
11+
# Modified
12+
# Copyright (C) 2024 Intel Corporation
713
# SPDX-License-Identifier: Apache-2.0
814

915
from __future__ import annotations

0 commit comments

Comments
 (0)