Which validation checks are performed for ML packages uploaded with the Enable Training option inactive?
- A.Existence of a non-empty root folder, requirements.txt file, and main.py file in the root folder which implements a class Main. The class is further validated to implement an __init__ and a predict function.
- B.Existence of a requirements.txt file, and main.py file which implements a class Main. The class is further validated to implement an __init__ and a predict function.
- C.Existence of a non-empty root folder, main.py file in the root folder which implements a class Main. The class is further validated to implement an __init__ and a predict function.
- D.Existence of a non-empty root folder, requirements.txt file, and train.py file in the root folder which implements a class Main. The class is further validated to implement an __init__ function.