photo

Jayanti


Last seen: 2ヶ月 前 2024 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

0 質問
118 回答

ランク
1,620
of 300,369

評判
42

コントリビューション
0 質問
118 回答

回答採用率
0.00%

獲得投票数
4

ランク
 of 20,936

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 168,436

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer

バッジを表示

Feeds

表示方法

回答済み
Is it possible to get the ouput values of a convolutional layer for a given input?
Hi Ian, I understand that you want to obtain the output values of an intermediate layer for a given input. The recommended app...

2ヶ月 前 | 0

回答済み
Matlab trained Model dissapeard of the workspace
Hi Frank, Since I don't have access to your mlx file, I am assuming if you might not have explicitly saved the model. Unless yo...

2ヶ月 前 | 0

回答済み
what is the loss function of pre-trained EfficientNet-B0
Hi Hyeokjun, Since loss function is to be configured while training. I assume you have exported the code and are training the n...

2ヶ月 前 | 0

回答済み
Using Set Path to Enable behaviorAnnotator on Matlab for Mac
Hi Sabine, I am assuming you are trying to use "behavior annotator" in MATLAB, but MATLAB is not recognizing the custom functio...

2ヶ月 前 | 0

| 採用済み

回答済み
DICOM private fields not written correctly with custom dicomdict
Hi Brian, It looks like the issue might be due to the fact that "dicominfo" is not using your custom DICOM dictionary when read...

2ヶ月 前 | 0

回答済み
Package function not allowed in fittype?
Hi Steve, This behavior occurs due to how "fittype" handles inputs. The documentation states that any ".m file" or anonymous fu...

4ヶ月 前 | 0

| 採用済み

回答済み
can you please explain the logic of this code???
Hi Priyanka, The provided MATLAB code is use to create a feedforward neural network. First line creates a 3-layer feedforward n...

4ヶ月 前 | 0

回答済み
what does it mean number of layers on nntool?
Hi Murat, From MATLAB R2022a "nntool" has been removed. Instead "nnstart" provides graphical interfaces that allow you to desig...

4ヶ月 前 | 0

回答済み
How many layers are hidden ? Is it Backpropagation network ?
Hi Silva, Yes, this defines a feedforward backpropagation neural network. The training function used here is "traingdx", which ...

4ヶ月 前 | 0

回答済み
Undo close tab in editor
Hi Nils, I have tried "Ctrl+Shift+T" shorcut key in MATLAB R2025a which allows to reopen a recently closed file in the Editor. ...

4ヶ月 前 | 0

回答済み
how to prossess multiple dicom images?
Hi Dimitra, To process a sequence of DICOM images without manually specifying each file name, you can automate the file selecti...

4ヶ月 前 | 0

回答済み
How to overlay color map onto dicom image?
Hi Tsai, Since you want to overlay a colormap onto a DICOM image when their sizes differ, you’ll need to first resize the color...

4ヶ月 前 | 0

回答済み
For one hidden layer with "tansig","purelin" transfer functions the post process Fcns = {'removeconstantrows','mapminmax'} is done after tansig or purlin?
Hi Sanaz, In MATLAB’s neural network architecture, each layer is assigned only one transfer function. Since you mentioned both ...

4ヶ月 前 | 0

回答済み
Gradient in Levenberg Marquardt algorithm
Hi Parham, Even though you initialize the 10-neuron network "net_d3" such that it mimics the 5-neuron network "net2", "Levenber...

4ヶ月 前 | 0

回答済み
How to use this trained programme to get outputs for new inputs?
Hi Sugan, After training your neural network, you can easily use the trained model to predict outputs for new data. Since the n...

4ヶ月 前 | 0

回答済み
MSE different in fitnlm vs. manually programmed
Hi Peter, The slight discrepancy you are seeing is because "mdl.MSE" returned by "fitnlm" is an unbiased estimate, whereas your...

4ヶ月 前 | 0

回答済み
After using custom Sigmoid layer , I am getting following error
Hi, The error you are encountering might occur when the label data (Y) passed to trainNetwork is either not in the correct form...

4ヶ月 前 | 0

回答済み
Which tool should I use for Software effort estimation---nftool, nprtool or ntstool?
Hi Sushma, Based on your requirement "nftool" in MATLAB seems to be a right choice. "nftool" is specifically designed for task...

4ヶ月 前 | 0

回答済み
how to set goal in training parameter in nntool?
Hi Santosh, From MATLAB R2022a "nntool" has been removed. Instead "nnstart" provides graphical interfaces that allow you to des...

4ヶ月 前 | 0

回答済み
Output threshold function, Neural Network
Hi Aydin, As you're training a feedforward neural network with 2 inputs, 1 hidden layer of 2 neurons, and 2 output neurons. Af...

4ヶ月 前 | 0

回答済み
Can this problem be solved with a single layer perceptron?
Hi Amna, A single-layer perceptron is only capable of solving linearly separable data. It can correctly classify Setosa versus ...

4ヶ月 前 | 0

回答済み
Plot performance of validation and test set (gives NaN)
Hi Alexs, As per the given code you are manually selecting a shuffled subset of 3000 samples using "randperm", but you later ca...

4ヶ月 前 | 0

回答済み
reason why to make many hidden layers
Hi Igor, According to the "Universal Approximation Theorem", a neural network with just one hidden layer can, approximate any n...

4ヶ月 前 | 0

回答済み
multi output multilayer perceptron neural network problem
Hi, The root cause of the issue appears to be incorrect assignment of multiple outputs due to repeated use of "y1(:,2)". Only t...

4ヶ月 前 | 0

回答済み
hi i want to build a rnn network for train and validation image classification(finger vein) then i got this error "Unexpected data format: The datastore read method must return a cell array or table."
Hi Andito, This error occurs because RNNs expects input data in the form of sequences typically a cell array where each cell co...

4ヶ月 前 | 0

回答済み
Add a devision line in scatter plot of perceptron
Hi Hans, Once your model is trained, the weight vector W = [w1; w2; w3] defines a linear decision boundary of the form: ...

4ヶ月 前 | 0

回答済み
perceptron classifier for alphabet
Perceptron is used for binary classification tasks and works well only when the data is linearly separable. However, in your cas...

4ヶ月 前 | 0

回答済み
Using pixelLabelDatastore with data obteined of lidarLabeler
Hi Jesus Garcia, The error you're encountering is due to a mismatch between the type of ground truth object you are passing to ...

6ヶ月 前 | 0

回答済み
Perturbing an image datastore for bag of words
Hi Megan, You can manually apply perturbations and save them to a temporary folder, then create a new "imageDatastore" from tha...

6ヶ月 前 | 0

回答済み
Computer Vision Toolbox Feature Enhancement Request?
Hi, If your labels are in the form of a string array or a character cell array, you can convert them to a categorical vector be...

6ヶ月 前 | 0

| 採用済み

さらに読み込む