File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 5555 # cores (`-j auto`). Thus, we limit to a single process (`-j 1`) here.
5656 sed -i -e 's/-j auto/-j 1/' Makefile
5757 make html
58+
59+ mkdir build/html/_generated_ipynb_notebooks
60+ for file in `find build/html/_downloads`; do
61+ if [[ $file == *.ipynb ]]; then
62+ cp $file build/html/_generated_ipynb_notebooks/
63+ fi
64+ done
5865
5966 cp -r build/html "${RUNNER_ARTIFACT_DIR}"
6067
Original file line number Diff line number Diff line change 33Datapoints FAQ
44==============
55
6+ https://colab.research.google.com/github/pytorch/vision/blob/gh-pages/_generated_ipynb_notebooks/plot_datapoints.ipynb
7+
68Datapoints are Tensor subclasses introduced together with
79``torchvision.transforms.v2``. This example showcases what these datapoints are
810and how they behave.
You can’t perform that action at this time.
0 commit comments