Differences between Training Data, Validation Data and Test Data
The problem with Validation Data in AutoML
AutoML uses the same data per iteration of Hyperparameter tuning, creating a model evaluation bias as the model continues to improve and fit to the Validation Data.
Define:
- Feature Engineering
- Featurization wrt Feature Engineering
Define Customizing Featurization and how to enable it
Additional feature engineering techniques (data manipulation) such as encoding and transforms. These can be enabled through ML Studio and the Python SDK
Define Ensemble Models
The combination of multiple models to improve machine learning results and predictive performance (ensemble learning).
V WA, St heter
The two types of Ensemble Model Combining Methods and which uses a Meta-Model
LR EN
The two default Ensemble Meta-Models (and for which type of ML task)
Define ONNX Format and its usage
Open Neural Network Exchange, an open format built for representing ML Models. You can convert your models to ONNX format to run on a variety of platforms
https://onnx.ai/
The ONNX Runtime does not support C#, only Python based models. Ergo you cannot run models in C# applications (T/F).
False. The ONNX Runtime also supports C#, so you can use ONNX formatted models in your C# apps
https://onnx.ai/