How to close nntrain tool???

조회 수: 9 (최근 30일)
Ali Ahmed
Ali Ahmed 2013년 7월 4일
HI I have made my Gui in which I have apply neural network for classification.. But I have apply the train command for training purpose. That open the nntrain tool I want that when my Gui open then its train tool donot show but it work... If someone knows about it please help me put.
Thanks Regards Ali

채택된 답변

Friedrich
Friedrich 2013년 7월 4일
편집: Friedrich 2013년 7월 4일
Hi,
when taking a look at the code of nntraintool you will see:
function [result,result2] = nntraintool(command,varargin)
%NNTRAINTOOL Neural network training tool
%
% Syntax
%
% nntraintool
% nntraintool('close')
%
% Description
%
% NNTRAINTOOL opens the training window GUI. This is launched
% automatically when TRAIN is called.
%
% To disable the training window set the following network training
% property.
%
% net.<matlab:doc nnproperty.net_trainParam trainParam>.<matlab:doc nnparam.showWindow showWindow> = false;
%
% To enable command line training instead.
%
% net.<matlab:doc nnproperty.net_trainParam trainParam>.<matlab:doc nnparam.showCommandLine showCommandLine> = true;
%
% NNTRAINTOOL('close') closes the window.
% Copyright 2007-2012 The MathWorks, Inc.
So call a to this
YourNet.trainParam.showWindow = false;
should do it.
  댓글 수: 1
Ali Ahmed
Ali Ahmed 2013년 7월 5일
Thanks for helping...

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by