回答済み
[Machine learning] image input layer의 사이즈 관련 문의
Hi, You can use "replaceLayers" function to achieve this. Please have a look at the following link to get a better understandi...

4年以上 前 | 0

回答済み
Deep neural network demension & change array dimension 2D to 3D array
Hi, Kindly refer to the following links: https://www.mathworks.com/matlabcentral/answers/21992-singleton-dimention-as-last-dim...

4年以上 前 | 0

回答済み
I need to put the put the datas given under "group 3" in this attached excel file to two different arrays and plot them but i can't becuase they are writtien with a comma ","
Hi Erdem Turan, You can do it using "readtable" and "table2array" functions. T = readtable('TensileTest_Data(1).xls'); x = ta...

4年以上 前 | 0

| 採用済み

回答済み
Collecting multiple .json objects in one .json file?
You can open the json files and append them one after another. Following is how you can achieve it. st1 = fileread('data/label...

4年以上 前 | 0

回答済み
How can I see the predicted labels for all my validation set images? I used deep network designer to modify a pre-trained network .
You can pass all the validation set as a batch to get the all predictions at once instead of doing it one by one. For example: ...

4年以上 前 | 0

回答済み
Import Keras Network: The value of 'TrainedVariance' is invalid. Expected input to be positive.
Hello, If your "modelfile" contains the weights of the model then there is no need to pass "WeightFile" as parameter to the "im...

4年以上 前 | 0

回答済み
Support Vector Machines for Binary Classification
Hello, Please refer to this answer https://in.mathworks.com/matlabcentral/answers/391217-quadprog-for-constrained-maximisation...

4年以上 前 | 0

回答済み
Input shape for the LSTM model
Your train dataset X and Y should have dimension 50000x1. Refer the example in this article. It has a sequence classification e...

4年以上 前 | 0

回答済み
leave one person out cross validation
You can try the following methods: Remove features Feature Selection Regularization Ensemble models if you are ok with tryin...

4年以上 前 | 0

回答済み
How can I change my role and department on MathWorks?
You cannot change the "role" and the "department" once you have entered it. However, these fields will not affect the working of...

4年以上 前 | 0

回答済み
How do I Run the below program? The sample program sums various column vectors. How do I Modify the first of the program (i.e., ignore the xsum2part) to calculate averages.
You can use "mean" function to find the average. Please have a look at the code below : x=[1;2;7;5;9;3;6;9;1;11;1]; avg = mean...

4年以上 前 | 0

回答済み
Handling out-of-vocabulary word in word embedding
From my understanding your want to handle OOV(out-of-vocabulary) words for your abbreviations detection task. For now MATLAB fas...

5年弱 前 | 0

回答済み
Calling static method of a class from within same class
From my understating you are trying to call a static method IsEnsembleRelated of class VariableContainer from the same c...

5年弱 前 | 0

| 採用済み

回答済み
for recursive formula index value
From my understanding T(2) is getting updated after running the program but you have assumed T(2) to be 2 at the staring of the ...

5年弱 前 | 0