*aic_importtrainedfile
External trained model file is imported for classification process.
Syntax
*aic_importtrainedfile filepath
Type
HyperMesh Tcl Modify Command
Description
This command imports trained machine learning model file to use it for classifying parts. The resultant binary (.aic) files from model training can be shared and used on different machines. A new classifier folder is created in the project directory and a duplicate of the trained model file is saved in it, which can be used later for classification.
These external models can be used for classification, but retraining or labelling of additional parts is not supported.
Inputs
- filepath
- The file path for the trained model file.
Examples
To import a trained model provided by the
user:
*aic_importtrainedfile "C:/Folder/CarDemo/CarDemo_1.aic"
Errors
Incorrect usage results in a Tcl error. To detect
errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}
Version History
2025