Skip to content

Commit 78102fd

Browse files
chore: move SPDX header in notebook to first code cell (#300)
## Summary - Move SPDX copyright/license header from a raw cell at the top of the 101 tutorial notebook into the first code cell as Python comments - Raw cells render poorly in some notebook viewers; placing the header in the code cell ensures visibility and passes the copyright check ## Test plan - [x] Notebook renders correctly in JupyterLab / VS Code / GitHub - [x] Copyright check CI passes Made with [Cursor](https://cursor.com) --------- Signed-off-by: Kendrick Boyd <kendrickb@nvidia.com>
1 parent 5ecc0ad commit 78102fd

1 file changed

Lines changed: 3 additions & 9 deletions

File tree

docs/tutorials/safe-synthesizer-101.ipynb

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
11
{
22
"cells": [
3-
{
4-
"cell_type": "raw",
5-
"id": "6808567a",
6-
"metadata": {},
7-
"source": [
8-
"<!-- SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. -->\n",
9-
"<!-- SPDX-License-Identifier: Apache-2.0 -->"
10-
]
11-
},
123
{
134
"cell_type": "markdown",
145
"id": "d1d7a7a3",
@@ -48,6 +39,9 @@
4839
"outputs": [],
4940
"source": [
5041
"%%capture\n",
42+
"# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.\n",
43+
"# SPDX-License-Identifier: Apache-2.0\n",
44+
"\n",
5145
"#TODO: Replace the internal NVIDIA Artifactory endpoint with the public PyPI release when available.\n",
5246
"!uv pip install nemo-safe-synthesizer[engine,cu128] --extra-index-url \"https://urm.nvidia.com/artifactory/api/pypi/nv-shared-pypi-local/simple\"\n",
5347
"!uv pip install datasets\n"

0 commit comments

Comments
 (0)