Reputation: 648
I'm working with Apple's BNNS framework to implement neural networks. I'm using the BNNSFilterCreateLayerFullyConnected
function to create fully connected layers. I have a few questions regarding weight data handling:
BNNSFilterCreateLayerFullyConnected
internally copy the weight data I provide into its own buffer? Or does it simply reference my original weight buffer?I haven't been able to find definitive information in Apple's documentation. Any insights or clarifications on this would be greatly appreciated.
Upvotes: 0
Views: 26