Matlab 神经网络 (ANN) csv 文件

发布于 2024-11-08 04:27:11 字数 157 浏览 0 评论 0原文

有谁知道有一个好地方可以获取一些数据的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傾旎 2024-11-15 04:27:11

您是否碰巧查看了 crab_dataset.mat 数据文件所在的文件夹?那里似乎还有很多其他演示数据集。这是一个关于在 MATLAB 中查找事物位置的简短课程...

函数 WHICH 将告诉您给定函数或文件的路径:

>> filePath = which('crab_dataset.mat')

filePath =

C:\Program Files\MATLAB\R2010b\toolbox\nnet\nndemos\nndatasets\crab_dataset.mat

如果您只想要目录的路径而不带文件名,您可以使用函数 FILEPARTS

>> directoryPath = fileparts(filePath)

directoryPath =

C:\Program Files\MATLAB\R2010b\toolbox\nnet\nndemos\nndatasets

如果你想查看目录的内容,可以使用函数DIR

>> dir(directoryPath)

.                          glass_dataset.mat          simpleclass_dataset.m      
..                         house_dataset.m            simpleclass_dataset.mat    
Contents.m                 house_dataset.mat          simplecluster_create.m     
abalone_dataset.m          ice_dataset.m              simplecluster_dataset.m    
abalone_dataset.mat        ice_dataset.mat            simplecluster_dataset.mat  
bodyfat_dataset.m          iris_dataset.m             simplefit_create.m         
bodyfat_dataset.mat        iris_dataset.mat           simplefit_dataset.m        
building_dataset.m         laser_dataset.m            simplefit_dataset.mat      
building_dataset.mat       laser_dataset.mat          simplenar_dataset.m        
cancer_dataset.m           maglev_dataset.m           simplenar_dataset.mat      
cancer_dataset.mat         maglev_dataset.mat         simplenarx_dataset.m       
chemical_dataset.m         oil_dataset.m              simplenarx_dataset.mat     
chemical_dataset.mat       oil_dataset.mat            simpleseries_dataset.m     
chickenpox_dataset.m       ph_dataset.m               simpleseries_dataset.mat   
chickenpox_dataset.mat     ph_dataset.mat             solar_dataset.m            
cho_dataset.m              pollution_dataset.m        solar_dataset.mat          
cho_dataset.mat            pollution_dataset.mat      thyroid_dataset.m          
crab_dataset.m             refmodel_dataset.m         thyroid_dataset.mat        
crab_dataset.mat           refmodel_dataset.mat       valve_dataset.m            
engine_dataset.m           river_dataset.m            valve_dataset.mat          
engine_dataset.mat         river_dataset.mat          wine_dataset.m             
exchanger_dataset.m        robotarm_dataset.m         wine_dataset.mat           
exchanger_dataset.mat      robotarm_dataset.mat       
glass_dataset.m            simpleclass_create.m       

看看所有这些 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:

>> filePath = which('crab_dataset.mat')

filePath =

C:\Program Files\MATLAB\R2010b\toolbox\nnet\nndemos\nndatasets\crab_dataset.mat

If you want just the path to the directory without the file name, you can use the function FILEPARTS:

>> directoryPath = fileparts(filePath)

directoryPath =

C:\Program Files\MATLAB\R2010b\toolbox\nnet\nndemos\nndatasets

And if you want to look at the contents of a directory, you can use the function DIR:

>> dir(directoryPath)

.                          glass_dataset.mat          simpleclass_dataset.m      
..                         house_dataset.m            simpleclass_dataset.mat    
Contents.m                 house_dataset.mat          simplecluster_create.m     
abalone_dataset.m          ice_dataset.m              simplecluster_dataset.m    
abalone_dataset.mat        ice_dataset.mat            simplecluster_dataset.mat  
bodyfat_dataset.m          iris_dataset.m             simplefit_create.m         
bodyfat_dataset.mat        iris_dataset.mat           simplefit_dataset.m        
building_dataset.m         laser_dataset.m            simplefit_dataset.mat      
building_dataset.mat       laser_dataset.mat          simplenar_dataset.m        
cancer_dataset.m           maglev_dataset.m           simplenar_dataset.mat      
cancer_dataset.mat         maglev_dataset.mat         simplenarx_dataset.m       
chemical_dataset.m         oil_dataset.m              simplenarx_dataset.mat     
chemical_dataset.mat       oil_dataset.mat            simpleseries_dataset.m     
chickenpox_dataset.m       ph_dataset.m               simpleseries_dataset.mat   
chickenpox_dataset.mat     ph_dataset.mat             solar_dataset.m            
cho_dataset.m              pollution_dataset.m        solar_dataset.mat          
cho_dataset.mat            pollution_dataset.mat      thyroid_dataset.m          
crab_dataset.m             refmodel_dataset.m         thyroid_dataset.mat        
crab_dataset.mat           refmodel_dataset.mat       valve_dataset.m            
engine_dataset.m           river_dataset.m            valve_dataset.mat          
engine_dataset.mat         river_dataset.mat          wine_dataset.m             
exchanger_dataset.m        robotarm_dataset.m         wine_dataset.mat           
exchanger_dataset.mat      robotarm_dataset.mat       
glass_dataset.m            simpleclass_create.m       

Look at all those MAT files! I'm sure you could find one of them that would be good for training your neural network.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文