This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
forked from BVLC/caffe
-
Notifications
You must be signed in to change notification settings - Fork 477
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
26 additions
and
10 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
# Caffe | ||
|
||
[![Build Status](https://travis-ci.org/BVLC/caffe.svg?branch=master)](https://travis-ci.org/BVLC/caffe) | ||
[![License](https://img.shields.io/badge/license-BSD-blue.svg)](LICENSE) | ||
|
||
Caffe is a deep learning framework made with expression, speed, and modularity in mind. | ||
It is developed by the Berkeley Vision and Learning Center ([BVLC](http://bvlc.eecs.berkeley.edu)) and community contributors. | ||
|
||
|
@@ -12,10 +15,22 @@ Check out the [project site](http://caffe.berkeleyvision.org) for all the detail | |
|
||
and step-by-step examples. | ||
|
||
## Setup | ||
`git clone [email protected]:MSRDL/caffe.git` | ||
## Windows Setup | ||
**Requirements**: Visual Studio 2013 and CUDA 7.5 | ||
|
||
Once the requirements are satisfied, run these commands | ||
``` | ||
git clone [email protected]:MSRDL/caffe.git | ||
cd caffe | ||
git clone [email protected]:MSRDL/wincaffe-3rdparty.git 3rdparty | ||
``` | ||
Now, you should be able to build `caffe.sln` | ||
|
||
## Development | ||
|
||
For development in Windows, also run `git clone [email protected]:MSRDL/wincaffe-3rdparty.git 3rdparty` from the `caffe` folder. | ||
### Common issues when pulling new commits from BVLC's branch | ||
- If compilation fails: regenerate `caffe.pb.h` and `caffe.pb.cc` files. This can be done by removing `src\caffe\proto\caffe.pb.h` file. The build process will regenerate if this file is missing. | ||
- If linking fails: it's likely that there are new `cpp` files that need to be added to the `caffelib` project. | ||
|
||
## License and Citation | ||
|
||
|
File renamed without changes.
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
26c6874
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@MSRDL/imgcap I had to roll back caffe to Oct version. There was static linking issue (similar to this) with the latest caffe that I couldn't figure out how to fix. Another weird thing is that it only affects the
caffe.exe
, which we use in training, and not thecaffelib.managed
.Anyway, upgrading caffe is not a priority yet. That's why I gave up.
TL;DR: run
git pull
:)