@Hyun Jae Cho Thanks for the question. Here is the doc for Auto ML Data prep / feature engineering.
Missing value imputaion: Mean, median, mode, one hot imputation marker.
Are you using the SDK or UI? We are working on a progress bar which will show up when training DNNs. Until that is released, there are couple of different ways to verify DNNs in the model:
- Logs in portal – azureml_automl.log will have printed statement for pretrained transformer or bilstm transformer. You can search for the string “Added” in the logs, which will tell what transformers were added in featurization. When BERT or BiLSTM is chosen, “pretrained” or “bilstm” transformer will appear in this log line
- After training the model, download the model and if you have all required dependencies locally available, you can unpickle the downloaded model and look into its featurization steps and it will list pretrained or bilstm transformer when the model pipeline includes it.
• ML Interpretability dashboard supported to understand feature importance for all models except ForecastTCN.