What is the content of building dataset included in MATLAB?
5 ビュー (過去 30 日間)
古いコメントを表示
The deep learning toolbox includes many sample data sets for shallow neural networks. One of them is the building dataset whose discription is "Building energy dataset" as mentioned in MATLAB help.
I am asking for many details about the content of this dataset. When we load it
load building_dataset
we find the inputs are 14 dimension with 3 targets for 4208 sample.
For example, what are the 14 feature of a building and what are the 3 features we are training the network to predict.
Also, I found that all the values are in the range of 0:1. Are they normalized or what?
I searched many times and found nothing.
0 件のコメント
回答 (1 件)
Anish Walia
2020 年 6 月 11 日
Following are the details about the Inputs and Targets:
buildingInputs - a 14x4208 matrix defining fourteen attributes for 4208
different houses.
1-10. Coded day of week, time of day
11. Temperature
12. Humidity
13. Solar strength
14. Wind
buildingTargets - a 3x4208 matrix of energy usage, to be estimated
from the inputs.
For any additional information you can run the following command in MATLAB
help building_dataset
参考
カテゴリ
Help Center および File Exchange で Sequence and Numeric Feature Data Workflows についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!