(task_type)
| 4875 | |
| 4876 | |
| 4877 | def test_cv_logging(task_type): |
| 4878 | pool = Pool(TRAIN_FILE, column_description=CD_FILE) |
| 4879 | train_dir_prefix = test_output_path('') |
| 4880 | cv( |
| 4881 | pool, |
| 4882 | { |
| 4883 | "iterations": 14, |
| 4884 | "learning_rate": 0.03, |
| 4885 | "loss_function": "Logloss", |
| 4886 | "task_type": task_type, |
| 4887 | "gpu_ram_part": TEST_GPU_RAM_PART, |
| 4888 | "train_dir": os.path.join(train_dir_prefix, 'catboost_info') |
| 4889 | }, |
| 4890 | ) |
| 4891 | return local_canonical_file(remove_time_from_json(os.path.join(train_dir_prefix, JSON_LOG_CV_PATH(0)))) |
| 4892 | |
| 4893 | |
| 4894 | def test_cv_with_not_binarized_target(task_type): |
nothing calls this directly
no test coverage detected