File tree Expand file tree Collapse file tree 3 files changed +16
-10
lines changed Expand file tree Collapse file tree 3 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -124,3 +124,6 @@ cleanup.sh
124
124
125
125
# VSCode
126
126
* .vscode
127
+
128
+ # pyspelling
129
+ dictionary.dic
Original file line number Diff line number Diff line change @@ -13,7 +13,10 @@ matrix:
13
13
context_visible_first : true
14
14
delimiters :
15
15
# Exclude figure rST tags
16
- - open : ' \.\.\s+(figure|literalinclude|math|image)::'
16
+ - open : ' \.\.\s+(figure|literalinclude|math|image|grid)::'
17
+ close : ' \n'
18
+ # Exclude raw directive
19
+ - open : ' \.\. (raw)::.*$\n*'
17
20
close : ' \n'
18
21
# Exclude Python coding directives
19
22
- open : ' -\*- coding:'
Original file line number Diff line number Diff line change 8
8
9
9
.. grid:: 2
10
10
11
- .. grid-item-card:: :octicon:`mortar-board;1em;` What you will learn
11
+ .. grid-item-card:: :octicon:`mortar-board;1em;` What you will learn
12
12
13
13
* Item 1
14
14
* Item 2
15
15
* Item 3
16
16
17
- .. grid-item-card:: :octicon:`list-unordered;1em;` Prerequisites
17
+ .. grid-item-card:: :octicon:`list-unordered;1em;` Prerequisites
18
18
19
19
* PyTorch v2.0.0
20
20
* GPU ???
35
35
respects regular expressions.
36
36
For example to run only ``neural_style_transfer_tutorial.py``,
37
37
use the following command:
38
-
38
+
39
39
.. code-block:: sh
40
-
40
+
41
41
GALLERY_PATTERN="neural_style_transfer_tutorial.py" make html
42
-
42
+
43
43
or
44
-
44
+
45
45
.. code-block:: sh
46
-
46
+
47
47
GALLERY_PATTERN="neural_style_transfer_tutorial.py" sphinx-build . _build
48
-
49
- * Make a copy of this repo and add only your
48
+
49
+ * Make a copy of this repository and add only your
50
50
tutorial to the `beginner_source` directory removing all other tutorials.
51
51
Then run ``make html``.
52
52
You can’t perform that action at this time.
0 commit comments