已回答
[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...

3 years 前 | 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...

3 years 前 | 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...

3 years 前 | 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...

3 years 前 | 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: ...

3 years 前 | 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...

3 years 前 | 0

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

3 years 前 | 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...

3 years 前 | 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...

3 years 前 | 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...

3 years 前 | 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...

3 years 前 | 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...

3 years 前 | 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...

3 years 前 | 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 ...

3 years 前 | 0