Xie Shipley
Followers: 0 Following: 0
Statistics
RANK
220,247
of 295,467
REPUTATION
0
CONTRIBUTIONS
10 Questions
3 Answers
ANSWER ACCEPTANCE
70.0%
VOTES RECEIVED
0
RANK
of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,912
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
How to generate stand alone sub function in codegen
coder.inline("never");
11 months ago | 0
| accepted
Question
How to generate stand alone sub function in codegen
function b= func1() b = func2(); end I use codegen to generate C code for func1, but the generated C code don't have entr...
11 months ago | 1 answer | 0
1
answerQuestion
How to prefetch data during network training ?
Is there any method to prefetch data during network training In MATLAB?
1 year ago | 1 answer | 0
1
answerQuestion
Does custom mini-batch datastore support Background Dispatch
I foloow This MATLAB tutorial to create my custom mini-batch datastore, and I want to accelerate the training process. My quest...
1 year ago | 1 answer | 0
1
answerQuestion
Can Video calssification using deeplearning run on GPU ?
If there are someone can tell me can this Video Classification example in MATLAB doc run on GPU ? inputSize = [28 28 1]; filte...
1 year ago | 1 answer | 0
1
answerCUDNN_STATUS_EXECUTION_FAILED while using convolution2dLayer with 2D image sequence(SSCBT)
If there are someone can tell me can this Video Classification example in MATLAB doc run on GPU ?
1 year ago | 0
| accepted
Question
What role does the nnet.layer.CPUFusableLayer play?
I've been through the web search, and I can't find any explanation about nnet.layer.CPUFusableLayer Any help is greatly appreci...
1 year ago | 1 answer | 0
1
answerQuestion
CUDNN_STATUS_EXECUTION_FAILED while using convolution2dLayer with 2D image sequence(SSCBT)
lgraph = [... sequenceInputLayer([64 5 1], "MinLength",4) % convolution2dLayer([3,3],1) % If include this conv2d layer...
1 year ago | 1 answer | 0
1
answerQuestion
How to realize realtime classification for bidirectional lstm?
layers = [ sequenceInputLayer(64, Minlength=4) bilstmLayer(20) bilstmLayer(10) fullyConnectedLayer(2) s...
1 year ago | 0 answers | 0
0
answersQuestion
Different result between `classify` and `classifyAndUpdateState`
I have trained a model and have good accuracy while doing forward inference, using `classify(net, feature_big)` I will get corre...
1 year ago | 1 answer | 0
1
answerQuestion
Can I save previous time step input feature in custom layer?
I want to use previous and current time-step input feature togther to improve performance of RNN, if decleare a property named ...
1 year ago | 1 answer | 0
1
answerClassification task using 2D sequences input
change `feature` from 48x3x800 to 48x3x1x800
2 years ago | 0
| accepted
Question
Classification task using 2D sequences input
layers = [ ... sequenceInputLayer([48 3 1]]) convolution2dLayer([3 3], 1) bilstmLayer(20) fullyConnectedLayer(2) classi...
2 years ago | 1 answer | 0