forked from BVLC/caffe
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request BVLC#1228 from longjon/solver-step
Refactor Solver to allow interactive stepping Conflicts: src/caffe/solver.cpp
- Loading branch information
Showing
6 changed files
with
86 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# Caffe | ||
This is Caffe with several unmerged PRs and no guarantees. | ||
|
||
Caffe is a deep learning framework developed with cleanliness, readability, and speed in mind.<br /> | ||
Consult the [project website](http://caffe.berkeleyvision.org) for all documentation. | ||
Everything here is subject to change, including the history of this branch. | ||
|
||
See `future.sh` for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/bin/bash | ||
git checkout dev | ||
git branch -D future | ||
git checkout -b future | ||
# deconv layer, coord maps, net pointer, crop layer | ||
hub merge https://github.com/BVLC/caffe/pull/1639 | ||
# reshaping data layer | ||
hub merge https://github.com/BVLC/caffe/pull/1313 | ||
# softmax missing values | ||
hub merge https://github.com/BVLC/caffe/pull/1654 | ||
# python testing | ||
hub merge https://github.com/BVLC/caffe/pull/1473 | ||
# gradient accumulation | ||
hub merge https://github.com/BVLC/caffe/pull/1663 | ||
# solver stepping | ||
hub merge https://github.com/BVLC/caffe/pull/1228 | ||
git add future.sh | ||
git commit -m 'add creation script' | ||
|
||
cat << 'EOF' > README.md | ||
This is Caffe with several unmerged PRs and no guarantees. | ||
Everything here is subject to change, including the history of this branch. | ||
See `future.sh` for details. | ||
EOF | ||
|
||
git add README.md | ||
git commit -m 'update readme' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters