peiyunh / tiny

Tiny Face Detector, CVPR 2017
https://cs.cmu.edu/~peiyunh/tiny
Other
1.13k stars 319 forks source link

A question about function 'constr()' #1

Closed MaxLingwei closed 7 years ago

MaxLingwei commented 7 years ago

Hello, Peiyun Hu. I've read your paper. And I downloaded the code for testing. But I met a problem when I run minimal_demo.m as follow:

>> minimal_demo
Undefined function or variable 'dagnn.Split'.

Error in dagnn.DagNN.loadobj (line 27)
      block = constr() ;

Error in minimal_demo (line 31)
net = dagnn.DagNN.loadobj(net.net);

I think I've installed matconvnet successfully since vl_testnn works well. And I've search on Google about constr() but found nothing to do. So would you give me some suggestion about this problem? Thank you very much!

flamerr commented 7 years ago

minimal_demo Undefined function or variable 'dagnn.Split'.

Error in dagnn.DagNN.loadobj (line 27) block = constr() ;

Error in minimal_demo (line 31) net = dagnn.DagNN.loadobj(net.net); same error...

peiyunh commented 7 years ago

Split operation is implemented in my fork of Matconvnet.

MaxLingwei commented 7 years ago

@peiyunh Thank you very much! Your work is so great that helps me a lot!