Certified Machine Learning Professional Exam QuestionsBrowse all questions from this exam

Certified Machine Learning Professional Exam - Question 49


Which of the following is an advantage of using the python_function(pyfunc) model flavor over the built-in library-specific model flavors?

Show Answer
Correct Answer: BC

The primary advantage of using the python_function(pyfunc) model flavor is that it enables deploying models without worrying about which library was used to create the model. This abstraction allows for greater flexibility and interoperability, making it easier to integrate models created with different libraries into a single deployment workflow.

Discussion

2 comments
Sign in to comment
trendy01Option: C
Dec 28, 2023

C. python_function can be used to deploy models without worrying about which library was used to create the model

hugodscarvalhoOption: C
Jan 27, 2024

The python_function flavor allows you to deploy models without being tied to a specific library, making it versatile and agnostic to the library used for model creation.