forked from mlverse/torch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_pkgdown.yml
153 lines (150 loc) · 4.16 KB
/
_pkgdown.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
destination: docs
template:
params:
bootswatch: united
ganalytics: UA-178883486-1
development:
mode: auto
navbar:
structure:
left: [home, getting-started, articles, examples, reference, news]
right: [github]
components:
getting-started:
text: Getting started
menu:
- text: Beginers guide
- text: Warm-up
href: articles/getting-started/warmup.html
- text: Tensors
href: articles/getting-started/tensors.html
- text: Tensors and autograd
href: articles/getting-started/tensors-and-autograd.html
- text: Defining new autograd functions
href: articles/getting-started/new-autograd-functions.html
- text: 'nn: neural networks with torch'
href: articles/getting-started/nn.html
- text: 'optim: optimizers in torch'
href: articles/getting-started/optim.html
- text: Custom nn modules
href: articles/getting-started/custom-nn.html
- text: Control flow & Weight sharing
href: articles/getting-started/control-flow-and-weight-sharing.html
- text: Torch Mechanics
- text: What's torch?
href: articles/getting-started/what-is-torch.html
- text: 'Autograd: automatic differentiation'
href: articles/getting-started/autograd.html
- text: Neural networks
href: articles/getting-started/neural-networks.html
articles:
text: Articles
menu:
- text: Installation
href: articles/installation.html
- text: Tensors
- text: Creating tensors
href: articles/tensor-creation.html
- text: Indexing
href: articles/indexing.html
- text: Tensor class
href: articles/tensor/index.html
- text: Serialization
href: articles/serialization.html
- text: Datasets
- text: Loading Data
href: articles/loading-data.html
- text: Autograd
- text: Using autograd
href: articles/using-autograd.html
- text: Extending autograd
href: articles/extending-autograd.html
examples:
text: Examples
menu:
- text: basic-autograd
href: articles/examples/basic-autograd.html
- text: basic-nn-module
href: articles/examples/basic-nn-module.html
- text: dataset
href: articles/examples/dataset.html
reference:
- title: Tensor creation utilities
contents:
- torch_empty
- torch_arange
- torch_eye
- torch_full
- torch_linspace
- torch_logspace
- torch_ones
- torch_rand
- torch_randint
- torch_randn
- torch_randperm
- torch_zeros
- matches("torch_.*_like")
- as_array
- title: Tensor attributes
contents:
- has_concept("tensor-attributes")
- is_torch_layout
- is_torch_memory_format
- is_torch_qscheme
- is_undefined_tensor
- title: Serialization
contents:
- has_concept("serialization")
- title: Mathematical operations on tensors
contents:
- starts_with("torch_")
- -torch_empty
- -torch_arange
- -torch_eye
- -torch_full
- -torch_linspace
- -torch_logspace
- -torch_ones
- -torch_rand
- -torch_randint
- -torch_randn
- -torch_randperm
- -torch_zeros
- -matches("torch_.*_like")
- -has_concept("tensor-attributes")
- -has_concept("serialization")
- title: Neural network modules
contents:
- starts_with("nn_")
- is_nn_module
- is_nn_parameter
- is_nn_buffer
- title: Neural networks functional module
contents:
- starts_with("nnf_")
- title: Optimizers
contents:
- starts_with("optim_")
- is_optimizer
- title: Learning rate schedulers
contents:
- starts_with("lr_")
- title: Datasets
contents:
- starts_with("dataset")
- starts_with("dataloader")
- starts_with("enumerate")
- tensor_dataset
- is_dataloader
- title: Autograd
contents:
- starts_with("autograd_")
- with_no_grad
- with_enable_grad
- AutogradContext
- title: Cuda utilities
contents:
- starts_with("cuda_")
- title: Installation
contents:
- install_torch