ShuffleNet | This is a fast caffe implementation of ShuffleNet | Machine Learning library
kandi X-RAY | ShuffleNet Summary
kandi X-RAY | ShuffleNet Summary
This is caffe implementation of ShuffleNet, For details, please read the original paper: "ShuffleNet: An Extremely Efficient Convolutional Neural Network for Mobile Devices" by Xiangyu Zhang et. al. 2017. This code is based on camel007's implementation(but I recode the cuda file for acceleration.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of ShuffleNet
ShuffleNet Key Features
ShuffleNet Examples and Code Snippets
Community Discussions
Trending Discussions on ShuffleNet
QUESTION
When we developed a new layer in caffe, which is new_layer.cpp
, new_layer.cu
, and new.layer.hpp
, we have to recompile caffe, is it possible to compile only this new layer files, like an update to the original library, or we have to recompile the whole library again? Can someone give me a hint?
ADD: actually I downloaded the layer files from someone's implementation on github: https://github.com/farmingyard/ShuffleNet there are .cpp
.cu
.hpp
files, I put .cpp
and .cu
in caffe/src/caffe/layers
, put .hpp
in caffe/include/caffe/layers/
, then add in caffe.proto
as:
ANSWER
Answered 2018-Jan-16 at 09:50When compiling using make
, make
knows what source it already compiled and what changed since the last build. If you only make local changes, make
will only compile/link the source that changed and what is affected by it (A change to a header file might require compilation of other sources that #include
this header).
That is, you do not need to do anything special, just keep using make
.
If you make clean
you delete all compiled objects and forces make
to re-compile the entire project from scratch.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install ShuffleNet
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page