| 663 | } |
| 664 | |
| 665 | XGB_DLL int XGDMatrixSetStrFeatureInfo(DMatrixHandle handle, const char *field, const char **c_info, |
| 666 | const xgboost::bst_ulong size) { |
| 667 | API_BEGIN(); |
| 668 | CHECK_HANDLE(); |
| 669 | auto &info = static_cast<std::shared_ptr<DMatrix> *>(handle)->get()->Info(); |
| 670 | xgboost_CHECK_C_ARG_PTR(field); |
| 671 | info.SetFeatureInfo(field, c_info, size); |
| 672 | API_END(); |
| 673 | } |
| 674 | |
| 675 | XGB_DLL int XGDMatrixGetStrFeatureInfo(DMatrixHandle handle, const char *field, |
| 676 | xgboost::bst_ulong *len, const char ***out_features) { |