Data Prep Sheet

Action Principale : annScore

Preparation Code

Script awaiting validation
Copied!
1/* Zuerst ein Modell trainieren */
2PROC CAS;
3 neuralNet.annTrain /
4 TABLE={name='my_ann_data'},
5 target='target',
6 inputs={'input1', 'input2', 'input3'},
7 arch='MLP',
8 hiddens={5},
9 modelOut={name='my_ann_model', replace=true};
10 RUN;
11QUIT;
Actions using this script
  • neuralNet annScore En cours
  • No other action uses this exact script.