#执行全流程pipeline = ModelPipeline()
X_train, X_test, y_train, y_test = pipeline. maintain_datasets('data. csv')
pipeline.train_algorithm(X_train, y_train)
predictions = pipeline.test_product(X_test)
test_report,accuracy = pipeline.___________(predictions)
error_cases,analysis = pipeline.analyze_errors(predictions)↵