Info
此问题已关闭。 请重新打开它进行编辑或回答。
How do I configure a network to accept an arbitrary object as the network input?
1 次查看(过去 30 天)
显示 更早的评论
As most of the examples provided use images as their input, I was wondering if there is logic in place to allow for an object or arbitrary sized non image to be accepted as a network input? I have done work with other fixed sized data inputs into models and see that differing images sizes can now be accepted in some cases.
0 个评论
回答(1 个)
Walter Roberson
2017-3-29
There is no logic in place to allow arbitrary objects to be accepted as inputs for neural networks. Mathematical calculations are done on the inputs, but arbitrary objects do not support mathematical calculations.
Neural Networks require numeric vectors of "features", but the underlying tools do not care whether the features are extracted from "images" or audio files or just plain "data".
Some of the interfaces such as Convolutional Neural Networks expect images because image processing is what they are optimized for.
If you have a particular interface in mind, then possibly someone could estimate the effort to change it to use a different form of input.
2 个评论
Walter Roberson
2017-3-29
You could create a simple function that extracted the location information from the point cloud and ran the NN on it.
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!