From e1738e8d8f26fa71e910340cac583b307fecab25 Mon Sep 17 00:00:00 2001 From: Taurean Dyer <46935140+taureandyernv@users.noreply.github.com> Date: Thu, 2 Jul 2026 16:38:07 -0700 Subject: [PATCH] Add SPDX headers to shell and C++ files Signed-off-by: Taurean Dyer <46935140+taureandyernv@users.noreply.github.com> --- data_setup.py | 2 +- scripts/my_pandas_workflow.py | 2 +- scripts/sklearn_RF.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data_setup.py b/data_setup.py index a665601..a37a2a4 100644 --- a/data_setup.py +++ b/data_setup.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# SPDX-FileCopyrightText: Copyright (c) NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 diff --git a/scripts/my_pandas_workflow.py b/scripts/my_pandas_workflow.py index c82bf7e..647b49c 100644 --- a/scripts/my_pandas_workflow.py +++ b/scripts/my_pandas_workflow.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Copyright (c) NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 import pandas as pd diff --git a/scripts/sklearn_RF.py b/scripts/sklearn_RF.py index 44049c3..7d81d99 100644 --- a/scripts/sklearn_RF.py +++ b/scripts/sklearn_RF.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Copyright (c) NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 from sklearn.ensemble import RandomForestClassifier