-
Notifications
You must be signed in to change notification settings - Fork 317
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do you have any plans to use tensorflow or caffe to implement this paper? #16
Comments
I do have a Caffe version that I may release later. |
I think caffe is not a good choice because the matconvnet has net.conserveMemory mechanism to aggressively conserve memory when inferencing a large upsampled image(5000x5000) while caffe have not any memory management schema. CNTK or mxnet may be a good choice as they gracefully support DAG memory sharing technology(same or not same to matconvnet's conserveMemory) to deal with the huge resnet101-fcn like model when processing large photo. |
@peiyunh I have already converted matconvnet model to caffemodel. But the problem is just like what @chinakook said, I can't test a image whose size is more than 1000 * 600, because of out of gpu memory. So please tell me how you solve the problem if you have any spare time. Thank you very much! |
@MaxLingwei I have ported a MXNet implementation which is high performant and momory efficiency as the peiyun's Matconvnet implementation. please refer to https://github.com/chinakook/hr101_mxnet |
@chinakook Thank you for your information. I just resized the img and got a good result as using its original size. And I can use caffe after resized it. |
@peiyunh It will be anticipated to see the caffe version |
Has anyone implemented a Tensorflow version ? |
If you have implemented a Tensorflow version, do let me know! |
If someone wants to collaborate to implement it with Keras (TensorFlow backend), let me know ! I began to work on it but I don't know Matlab enough |
Can you commit a caffe version? |
@jmu201521121021 @helxsz i have written a script which can transform a matconvnet model to cafemodel. https://github.com/MaxLingwei/MatConvNet2caffe |
@MaxLingwei Thanks, also like to know the caffe version |
hi @peiyunh appreciate ur nice work, very happy to see ur plan on releasing the version of caffe. I plan to realize ur tiny face on caffe framework, so it would be helpful to let me know when will you release it? |
Is it possible to have the caffe version? |
A newer face detection based on tiny face named SSH is open. |
@peiyunh @chinakook I have ported a TensorFlow Tiny Face Detector based on peiyunh's MatConvNet and chinakook's MXNet versions. |
@cydonia999 nice work! I've already finished the MXNet version of tiny including training. I will make it public later and the data preparation code can be shared across different deep learning frameworks. |
@chinakook nice work SSH~ still waiting for the caffe version of tiny face. |
@MaxLingwei Thank you for your matconvnet2caffe. Do you compare the result between caffe and matconvnet? Is the result of caffe same with the matconvnet? |
@zmlmanly It's nearly the same. But there's another problem that caffe has no method for memory saving. It costs too much GPU memory. So I can't test on large images using caffe. |
@MaxLingwei Thank you for your reply. I think you can reduce the height and width of input_dim in prototxt, for example, you can adjust |
@zmlmanly I just use both the Deconvolution layer and Crop layer in caffe, adding the Crop layer after the Deconvolution layer. |
@MaxLingwei How to set the Crop layer after the Deconvolution layer in caffe? For example, the input of deconvolution layer is [N,C,H,W], the output of deconvolution layer in caffe is [N,C,2H,2W], but the output of deconvolution layer in matconvnet is [N,C,2H-1,2W-1]. Could you give me display the crop layer of prototxt in caffe? Thang you very much. |
@zmlmanly There are two bottoms in Crop layer. To my knowledge it will crop one bottom to match another automaticly. I have upload the prototxt in my repository. https://github.com/MaxLingwei/MatConvNet2caffe |
Your working is very nice !!!
Do you have any plans to use tensorflow or caffe to implement this paper?
The text was updated successfully, but these errors were encountered: