?> How can I save the state of my trained model for l... - Aide
QUESTION / RÉPONSE

How can I save the state of my trained model for later use?

1 consultations

Réponse

You can use the 'saveState' parameter to specify an output table where the model's state, including its weights, will be saved. This allows you to resume training later or use the model for scoring with the 'annScore' action.
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.

annCode
neuralNet

Erzeugt DATA-Step-Scoring-Code aus einem künstlichen neuronalen Netzwerkmodell. Diese Aktion ist entscheidend für die Operationalisierung von Modellen, da sie es ermöglicht, das trainierte Modell in eine portable und wiederverwendbare Form zu konvertieren, die in verschiedenen SAS-Umgebungen zur Bewertung neuer Daten ohne die Notwendigkeit der CAS-Umgebung ausgeführt werden kann.

annCode
neuralNet

L'action `annCode` génère un code SAS DATA step à partir d'un modèle de réseau de neurones artificiels entraîné. Ce code peut ensuite être utilisé pour scorer de nouvelles données, c'est-à-dire pour appliquer le modèle et obtenir des prédictions. C'est une étape cruciale pour déployer un modèle en production ou pour l'intégrer dans d'autres processus SAS.