()
| 2837 | |
| 2838 | |
| 2839 | def test_generated_survival_aft(): |
| 2840 | cd_file = data_file('survival_aft', 'train.cd') |
| 2841 | _test_generated_metrics( |
| 2842 | 'SurvivalAft', |
| 2843 | Pool(data=data_file('survival_aft', 'train'), column_description=cd_file), |
| 2844 | Pool(data=data_file('survival_aft', 'test'), column_description=cd_file), |
| 2845 | { |
| 2846 | 'SurvivalAft': metrics.SurvivalAft() |
| 2847 | }, |
| 2848 | "survival_regression" |
| 2849 | ) |
| 2850 | |
| 2851 | |
| 2852 | def test_generated_cox(): |
nothing calls this directly
no test coverage detected