(self, thread_count)
| 1129 | raise CatBoostError("Invalid length of feature_names={} : must be equal to the number of columns in data={}".format(len(feature_names), num_col)) |
| 1130 | |
| 1131 | def _check_thread_count(self, thread_count): |
| 1132 | if not isinstance(thread_count, INTEGER_TYPES): |
| 1133 | raise CatBoostError("Invalid thread_count type={} : must be an integer".format(type(thread_count))) |
| 1134 | |
| 1135 | def slice(self, rindex): |
| 1136 | if not isinstance(rindex, ARRAY_TYPES): |
no test coverage detected