How to use the already trained neural network

3 ビュー (過去 30 日間)
Luís Dias
Luís Dias 2016 年 1 月 5 日
コメント済み: Sandeep Arora 2017 年 12 月 30 日
I recently used Neural Network toolbox from Matlab to train a neural network for detecting violence in movies. After training the network and obtaining a good performance I've been searching for the function that let me use the network and I can't find it. Can you help me on using the network after training it?
PS: I just want to try the network giving one input and getting an output
  1 件のコメント
Sandeep Arora
Sandeep Arora 2017 年 12 月 30 日
Dude, can I ask a question not related to this. How did you get the network or your script to read the screen, let alone detect violence for your data. What I need specifically is to open up a game saved on my desktop and let my neural network train on it, could you please help?

サインインしてコメントする。

採用された回答

Sean de Wolski
Sean de Wolski 2016 年 1 月 5 日
編集済み: Sean de Wolski 2016 年 1 月 5 日
y = net(x)
where net is your trained network and x is your new input.
  3 件のコメント
Greg Heath
Greg Heath 2016 年 1 月 6 日
Better yet, what are the sizes of the matrices you used for training
[ I N ] = size(input)
[ O N ] = size(target)
Then, for each I-dimensional column input test vector, x, you should get an O-dimensional column output vector y.
Luís Dias
Luís Dias 2016 年 1 月 8 日
I did it! I had to traspose one of the matrixes! Thanks man

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by