Community Profile

photo

Jack Xiao


Last seen: mehr als ein Jahr vor Aktiv seit 2018

Followers: 0   Following: 0

Statistiken

All
  • Explorer
  • Knowledgeable Level 2
  • Revival Level 2
  • First Review
  • Introduction to MATLAB Master
  • CUP Challenge Master
  • Solver
  • Thankful Level 3
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Why is there nnet.layer.Formattable in the deep learning toolbox ?
I defined a custom layer in terms of the given demo of "Define Custom Recurrent Deep Learning Layer" which defined peepholeLstmL...

etwa 2 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Why is the data type not unified for custom training loops (dlarray) and internal training loops (array) in deep learning?
[XTrain,TTrain] = japaneseVowelsTrainData; inputSize = 12; numHead = 10; numHiddenUnits = 100; numClasses = 9; embedding...

etwa 2 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Does the input size of sequenceInputLayer have to be set 1?
i followed the example https://ww2.mathworks.cn/help/textanalytics/ug/classify-text-data-using-deep-learning.html. The network ...

etwa 2 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


how to create tables with multiple dimensions?
hi, i have 5 tables and each table is with size 9x2, I need to make them together like 5x9x2. how to create tables with mult...

mehr als 2 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Unrecognized function or variable 'importONNXFunction'.
I am using version r2021a and testing import onnx model, and came across the error: Unrecognized function or variable 'importON...

mehr als 2 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Does batchNormalizationLayer influence network results?
As far as I know, batchnormalization is used for speeding up model training, it does not influence network results too much. How...

etwa 3 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
Function fitting using conventional neutral network
you can refer to the given exmaple for Deep designer app.

etwa 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to customize the "model function" in the deep learning toolbox to add learnable parameters?
please see the demo of training gan.

etwa 3 Jahre vor | 0

Beantwortet
Deep Learning, Image Processing, Custom Loop
for custom loop, please see the demo for training gan. Train Generative Adversarial Network (GAN) - MATLAB & Simulink (mathwork...

etwa 3 Jahre vor | 0

Beantwortet
coding structure of gaussian noise layer
here is the code: classdef gaussianNoiseLayer < nnet.layer.Layer % gaussianNoiseLayer Gaussian noise layer % A ...

etwa 3 Jahre vor | 0

Beantwortet
How to train a Faster R-CNN with a Multi-labeled images table?
what does multi-labeled ground-truth mean? the MathWorks' rcnn example is for object detection with mutilple instances but one...

etwa 3 Jahre vor | 0

Beantwortet
Issues: Training CNN on LFW database.
reduce the learning rate to a smaller value such as 0.0001, try to add more data and add dropout layer, or change a little weak...

etwa 3 Jahre vor | 0

Beantwortet
How to visualize the changes in dlarray/weight distribution with histograms in deep learning?
as far as I know, there is no direct way to visulize the net weight but net activation or structure can be visulized in matlab...

etwa 3 Jahre vor | 0

Beantwortet
Deep learning layer with custom backward() function
dlnetwork is for customed training loop and dlfeval is for customed model gradients using defined gradient funtction. you can r...

etwa 3 Jahre vor | 0

Beantwortet
How does matlab visualize the deep neural network structure diagram?
plot(net) is a simple way to visualize net structure in matlab or deep network app designer is a better way. but there is no ...

etwa 3 Jahre vor | 0

Beantwortet
Validation Accuracy doesn't increase.
reduce the initial learning rate to a smaller value such as 0.0001

etwa 3 Jahre vor | 0

Beantwortet
Image denoising using DnCNN toolboxdir error
did you install the toolbox?

etwa 3 Jahre vor | 0

Beantwortet
Validation accuracy that appears different from the graph in DeepNetworkDesigner
it is overfit. add more training data, or add dropout layer, or reduce net layers.

etwa 3 Jahre vor | 0

Beantwortet
Can I extract the pretrained encoder part from 3D Unet to use it in classification?
you can try, but i think it would not make big sense as Unet is for regression while your taks is classification. to tranfer th...

etwa 3 Jahre vor | 0

| akzeptiert

Beantwortet
NARNET FOR BINARY CLASSIFICATION PREDICTION
you can refer the given demo for classification, in fact the given net in the demo can be applicative. the key is that you shou...

etwa 3 Jahre vor | 0

| akzeptiert

Frage


why can imageInputLayer of 'deep network designer' app not be edited?
I want to edit the mean and std in imageInputLayer, but it is settled and can not be eidted, as follow: so, how to edit it di...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
how can I use multiple input for Alexnet?
what do you mean 'multiple input '? if it is multiple pics, you can concetenate to be one (2 rgb pics can be formed to be 1 six...

mehr als 3 Jahre vor | 0

Beantwortet
How to improve the accuracy of neural networks (feed forward network)
what is nftool ? is it in one matlab toolbox? why not directly use deep learning toolbox..

mehr als 3 Jahre vor | 0

Gelöst


Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...

mehr als 3 Jahre vor

Gelöst


Indexed Probability Table
This question was inspired by a Stack Overflow question forwarded to me by Matt Simoneau. Given a vector x, make an indexed pro...

mehr als 3 Jahre vor

Gelöst


Clean the List of Names
Given a list of names in a cell array, remove any duplications that result from different capitalizations of the same string. So...

mehr als 3 Jahre vor

Gelöst


DNA N-Gram Distribution
Given a string s and a number n, find the most frequently occurring n-gram in the string, where the n-grams can begin at any poi...

mehr als 3 Jahre vor

Gelöst


Sums with Excluded Digits
Add all the integers from 1 to n in which the digit m does not appear. m will always be a single digit integer from 0 to 9. no...

mehr als 3 Jahre vor

Gelöst


Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of <http://en.wikipedia.org/wiki/Pascals_t...

mehr als 3 Jahre vor

Gelöst


Counting Money
Add the numbers given in the cell array of strings. The strings represent amounts of money using this notation: $99,999.99. E...

mehr als 3 Jahre vor

Mehr laden