How can I find japaneseVowelsTrainData
Mostra commenti meno recenti
HI!
I am reading this tutorials
But How can I find the "japaneseVowelsTrainData" dataset?
I think the data format is different from the original dataset from UCI
Risposte (2)
Srivardhan Gadila
il 16 Gen 2020
Modificato: Srivardhan Gadila
il 16 Gen 2020
Try the following in MATLAB Command Window
>> [XTrain,YTrain] = japaneseVowelsTrainData;
For more information about it, try the following in the MATLAB Command Window
>> help japaneseVowelsTrainData
4 Commenti
andres varelo
il 17 Gen 2020
Hello.... Can i Use lstmlayer in matlab 2015? ...
Walter Roberson
il 17 Gen 2020
No it needs R2017b
Fadi Alsuhimat
il 1 Ago 2020
@Walter Roberson
how I can create datsset like japaneseVowelsTrainData??
Walter Roberson
il 4 Ago 2020
https://www.mathworks.com/help/deeplearning/ug/train-network-using-custom-mini-batch-datastore-for-sequence-data.html describes the format of the dataset.
There is also the function japaneseVowelsTrainData() which does load() on a file that has variables XTrain and YTrain . YTrain is a categorical array. XTrain is a cell array with as many entries as YTrain contains. Each entry in the cell is a double() array that has 12 rows and multiple columns. Each row corresponds to one feature; each column corresponds to a measurement of the feature at a time point.
The format is easy to build. The difficult part is in deciding what you want the features to be. After that it is just straight forward data collection, transformation from the data to the corresponding feature values, and storing in a cell array.
Ryotaro MIURA
il 16 Gen 2020
0 voti
3 Commenti
Walter Roberson
il 16 Gen 2020
I just tried matlab online and had no problem locating the data.
Ryotaro MIURA
il 16 Gen 2020
Ryotaro MIURA
il 16 Gen 2020
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!