Dear Sir,
I am looking for some automation scripts execution in KnowledgeStudio. The way I do in the first stage is to open KSQuery log view and run model(Ex: DeepLearning Model). The log has be captured successfully in KSQuery log view. The next step I want to do is to change some model parameters, such as hidden layer no and node in each layer in the log scripts I recorded. The original hidden layer parameters is '40/40/40'. I try to declare SQL variable and set this variable like below codes
DECLARE @HiddenVar AS VARCHAR(10)
SET @HiddenVar='40/40/40'
however, when I run these two line by using KSQuery.exe in command line. I always bring me error. can't parse the DECLARE...
If I want to replace '40/40/40' in the KSQuery script by variable, Ex: HiddenVar, what should I do?