Answered
[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...

mer än 2 år ago | 0

Answered
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...

mer än 2 år ago | 0

Answered
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...

mer än 2 år ago | 0

| accepted

Answered
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...

mer än 2 år ago | 0

Answered
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: ...

mer än 2 år ago | 0

Answered
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...

mer än 2 år ago | 0

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

mer än 2 år ago | 0

Answered
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...

mer än 2 år ago | 0

Answered
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...

mer än 2 år ago | 0

Answered
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...

mer än 2 år ago | 0

Answered
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...

mer än 2 år ago | 0

Answered
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...

mer än 2 år ago | 0

Answered
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...

mer än 2 år ago | 0

| accepted

Answered
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 ...

mer än 2 år ago | 0