Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/tutorials/differential-privacy.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@
" --index https://flashinfer.ai/whl/ \\\n",
" --index https://download.pytorch.org/whl/cu129 \\\n",
" --index https://wheels.vllm.ai/0.26.0/cu129 \\\n",
" --index-strategy unsafe-best-match\n",
" uv pip install kagglehub\n",
" --index-strategy unsafe-best-match --quiet\n",
" uv pip install kagglehub --quiet\n",
"else\n",
" pip install \"nemo-safe-synthesizer[engine,cu129]\" \\\n",
" --extra-index-url https://flashinfer.ai/whl/cu129 \\\n",
" --extra-index-url https://flashinfer.ai/whl/ \\\n",
" --extra-index-url https://download.pytorch.org/whl/cu129 \\\n",
" --extra-index-url https://wheels.vllm.ai/0.26.0/cu129\n",
" pip install kagglehub\n",
" --extra-index-url https://wheels.vllm.ai/0.26.0/cu129 --quiet\n",
" pip install kagglehub --quiet\n",
Comment on lines +54 to +55

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Raw pip fallback remains

When uv is unavailable, this modified install cell invokes raw pip install, contrary to the repository's required uv-only dependency workflow; the same pattern remains in the other three modified notebooks.

Context Used: AGENTS.md (source)

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

"fi\n"
]
},
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/healthcare-hospital-readmissions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@
" --index https://flashinfer.ai/whl/ \\\n",
" --index https://download.pytorch.org/whl/cu129 \\\n",
" --index https://wheels.vllm.ai/0.26.0/cu129 \\\n",
" --index-strategy unsafe-best-match\n",
" --index-strategy unsafe-best-match --quiet\n",
"else\n",
" pip install \"nemo-safe-synthesizer[engine,cu129]\" xgboost \\\n",
" --extra-index-url https://flashinfer.ai/whl/cu129 \\\n",
" --extra-index-url https://flashinfer.ai/whl/ \\\n",
" --extra-index-url https://download.pytorch.org/whl/cu129 \\\n",
" --extra-index-url https://wheels.vllm.ai/0.26.0/cu129\n",
" --extra-index-url https://wheels.vllm.ai/0.26.0/cu129 --quiet\n",
"fi"
]
},
Expand Down
8 changes: 4 additions & 4 deletions docs/tutorials/safe-synthesizer-101.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@
" --index https://flashinfer.ai/whl/ \\\n",
" --index https://download.pytorch.org/whl/cu129 \\\n",
" --index https://wheels.vllm.ai/0.26.0/cu129 \\\n",
" --index-strategy unsafe-best-match\n",
" uv pip install datasets\n",
" --index-strategy unsafe-best-match --quiet\n",
" uv pip install datasets --quiet\n",
"else\n",
" pip install \"nemo-safe-synthesizer[engine,cu129]\" \\\n",
" --extra-index-url https://flashinfer.ai/whl/cu129 \\\n",
" --extra-index-url https://flashinfer.ai/whl/ \\\n",
" --extra-index-url https://download.pytorch.org/whl/cu129 \\\n",
" --extra-index-url https://wheels.vllm.ai/0.26.0/cu129\n",
" pip install datasets\n",
" --extra-index-url https://wheels.vllm.ai/0.26.0/cu129 --quiet\n",
" pip install datasets --quiet\n",
"fi\n"
]
},
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/time-series-financial-transactions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@
" --index https://flashinfer.ai/whl/\\\n",
" --index https://download.pytorch.org/whl/cu129 \\\n",
" --index https://wheels.vllm.ai/0.26.0/cu129 \\\n",
" --index-strategy unsafe-best-match\n",
" --index-strategy unsafe-best-match --quiet\n",
"else\n",
" pip install \"nemo-safe-synthesizer[engine,cu129]\" \\\n",
" --extra-index-url https://flashinfer.ai/whl/cu129 \\\n",
" --extra-index-url https://flashinfer.ai/whl/ \\\n",
" --extra-index-url https://download.pytorch.org/whl/cu129 \\\n",
" --extra-index-url https://wheels.vllm.ai/0.26.0/cu129\n",
" --extra-index-url https://wheels.vllm.ai/0.26.0/cu129 --quiet\n",
"fi"
],
"execution_count": null,
Expand Down
Loading