Skip to content

Commit e191830

Browse files
committed
Cleanup for PR submission
1 parent 7d5d1cf commit e191830

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
- WITH_CUDA=true WITH_CMAKE=true WITH_IO=true
99
- WITH_CUDA=false WITH_CMAKE=false WITH_IO=false
1010
- WITH_CUDA=false WITH_CMAKE=true WITH_IO=false PYTHON_VERSION=3
11-
# Currently there is no way to install cudnn via apt-get. Uncomment wjen it's available.
11+
# Currently there is no way to install cudnn via apt-get. Uncomment when it's available.
1212
# - WITH_CUDA=true WITH_CMAKE=false WITH_IO=true WITH_CUDNN=true
1313
# - WITH_CUDA=true WITH_CMAKE=true WITH_IO=true WITH_CUDNN=true
1414

README.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Caffe
22

3-
[![Build Status](https://travis-ci.org/BVLC/caffe.svg?branch=master)](https://travis-ci.org/BVLC/caffe)
4-
[![License](https://img.shields.io/badge/license-BSD-blue.svg)](LICENSE)
53

64
Caffe is a deep learning framework made with expression, speed, and modularity in mind.
75
It is developed by the Berkeley Vision and Learning Center ([BVLC](http://bvlc.eecs.berkeley.edu)) and community contributors.

docs/tutorial/layers.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ In contrast, other layers (with few exceptions) ignore the spatial structure of
3939
- `n * c_i * h_i * w_i`
4040
* Output
4141
- `n * c_o * h_o * w_o`, where `h_o = (h_i + 2 * pad_h - kernel_h) / stride_h + 1` and `w_o` likewise.
42-
* Sample (as seen in `./models/bvlc_reference_caffenet/train_val.prototxt`)
43-
42+
* Sample (as seen in `./examples/imagenet/imagenet_train_val.prototxt`)
4443
layer {
4544
name: "conv1"
4645
type: "Convolution"

src/caffe/common.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -297,3 +297,4 @@ const char* curandGetErrorString(curandStatus_t error) {
297297
#endif // CPU_ONLY
298298

299299
} // namespace caffe
300+

0 commit comments

Comments
 (0)