?> ¿Cómo se definen las capas ocultas y el número ... - Aide
QUESTION / RÉPONSE

¿Cómo se definen las capas ocultas y el número de neuronas en un modelo `annTrain`?

0 consultations

Réponse

Se utiliza el parámetro `hiddens` para especificar el número de neuronas ocultas para cada capa oculta. Por ejemplo, `hiddens={5, 3}` define dos capas ocultas, una con 5 neuronas y la segunda con 3.
Action technique liée

Voir la documentation de annTrain

Voir l'Action
Thématiques

Voir aussi

annScore
neuralNet

The `annScore` action scores a data table using a pre-trained artificial neural network model. This is a crucial step after training a model with `annTrain`, allowing you to apply the learned patterns to new data to make predictions. The action can generate various outputs, including predicted values, probabilities for classification tasks, and even the values of hidden layer nodes, which can be useful for feature engineering or model interpretation.

annScore
neuralNet

Die Aktion `annScore` im `neuralNet`-Aktionssatz wird verwendet, um eine Datentabelle unter Verwendung eines zuvor trainierten künstlichen neuronalen Netzwerkmodells zu bewerten. Diese Aktion nimmt ein trainiertes Modell (gespeichert in einer CAS-Tabelle) und eine Eingabetabelle und erzeugt eine Ausgabetabelle, die die vorhergesagten Werte enthält. Sie ist ein wesentlicher Schritt im Machine-Learning-Workflow, um die Leistung eines Modells auf neuen Daten zu bewerten oder Vorhersagen für die Produktion zu generieren.

annCode
neuralNet

The annCode action generates SAS DATA step scoring code from a trained artificial neural network model. This allows for the deployment of the model outside of the CAS environment, enabling scoring of new data in traditional SAS environments. The generated code can be saved to a CAS table for further use.