You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Caffe Users
I'm wondering if there is a way to "forward" the network on only one layer.
If there is no way to do that, how would it benefit us to set the data in middle blobs to something else as they will get replaced by new data when the whole network runs forward!
I want to load data in a bottom layer, run the forward on that layer, and see the outputs of that layer.
Message has been deleted
Message has been deleted
Message has been deleted
Amir Abdi
unread,
Mar 4, 2016, 1:14:27 AM3/4/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Caffe Users
I believe there is a function available in pycaffe, but nothing is implemented for matcaffe. I need to do this in MATLAB.
On Thursday, March 3, 2016 at 5:13:31 PM UTC-8, Amir Abdi wrote:
I believe there is a function available in pycaffe, but nothing is implemented for matcaffe.
On Thursday, March 3, 2016 at 5:07:42 PM UTC-8, Amir Abdi wrote:
I'm using the MATLAB interface.
On Thursday, March 3, 2016 at 5:02:30 PM UTC-8, Amir Abdi wrote:
For now, what I'm doing is I define a separate network for each layer! So that each network only holds one single layer and I can call forward() on them.
Jan C Peters
unread,
Mar 4, 2016, 9:17:45 AM3/4/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Caffe Users
There definitely is the possibility of doing that in pycaffe, with net.forward(from=..., to=...).
I just had a brief look at the matcaffe code, and it seems this is indeed impossible there. So you have two options: switch to python, or adjust the matcaffe API yourself to expose this functionality to MATLAB. Maybe you're lucky and somebody already did that. Search the PRs and forks.