Matlab 神经网络 (ANN) csv 文件
有谁知道有一个好地方可以获取一些数据的 csv 电子表格来制作神经网络吗?这是一个与 matlab 相关的作业。
我需要它与matlab附带的crabdata文件非常相似。
我不知道 csv 的内容是什么,只是格式如下: 可以映射到 0 或 1 的几列数据和最终结果。
Does anyone know of a good place to get a csv spreadsheet of some data to make a neural network with? Its for an assignment to do with matlab.
I need it to be something very similar to the crabdata file that comes with matlab.
I have no actual idea on what the csv would be about, just something in the format of:
couple of columbs of data and final result that can be mapped to 0 or 1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否碰巧查看了
crab_dataset.mat
数据文件所在的文件夹?那里似乎还有很多其他演示数据集。这是一个关于在 MATLAB 中查找事物位置的简短课程...函数 WHICH 将告诉您给定函数或文件的路径:
如果您只想要目录的路径而不带文件名,您可以使用函数 FILEPARTS:
如果你想查看目录的内容,可以使用函数DIR:
看看所有这些 MAT 文件!我相信您可以找到其中之一,这将有助于训练您的神经网络。
Did you happen to look in the folder where the
crab_dataset.mat
data file exists? There appear to be a lot of other demo data sets there. Here's a short lesson in finding where things are in MATLAB...The function WHICH will tell you the path to a given function or file:
If you want just the path to the directory without the file name, you can use the function FILEPARTS:
And if you want to look at the contents of a directory, you can use the function DIR:
Look at all those MAT files! I'm sure you could find one of them that would be good for training your neural network.