File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ class Blob {
246
246
247
247
/* *
248
248
* @brief Set the data_ shared_ptr to point to the SyncedMemory holding the
249
- * data_ of Blob other -- useful in Layer& s which simply perform a copy
249
+ * data_ of Blob other -- useful in Layer% s which simply perform a copy
250
250
* in their Forward pass.
251
251
*
252
252
* This deallocates the SyncedMemory holding this Blob's data_, as
@@ -255,7 +255,7 @@ class Blob {
255
255
void ShareData (const Blob& other);
256
256
/* *
257
257
* @brief Set the diff_ shared_ptr to point to the SyncedMemory holding the
258
- * diff_ of Blob other -- useful in Layer& s which simply perform a copy
258
+ * diff_ of Blob other -- useful in Layer% s which simply perform a copy
259
259
* in their Forward pass.
260
260
*
261
261
* This deallocates the SyncedMemory holding this Blob's diff_, as
Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ namespace caffe {
17
17
* @brief An interface for the units of computation which can be composed into a
18
18
* Net.
19
19
*
20
- * Layer& s must implement a Forward function, in which they take their input
21
- * (bottom) Blob& s (if any) and compute their output Blob& s (if any).
20
+ * Layer% s must implement a Forward function, in which they take their input
21
+ * (bottom) Blob% s (if any) and compute their output Blob% s (if any).
22
22
* They may also implement a Backward function, in which they compute the error
23
- * gradients with respect to their input Blob& s, given the error gradients with
24
- * their output Blob& s.
23
+ * gradients with respect to their input Blob% s, given the error gradients with
24
+ * their output Blob% s.
25
25
*/
26
26
template <typename Dtype>
27
27
class Layer {
You can’t perform that action at this time.
0 commit comments