| 86 | } |
| 87 | |
| 88 | static inline TDataProviderPtr MakeProvider(const TDataSet& ds) { |
| 89 | |
| 90 | TConstArrayRef<float> features(ds.Features, ds.FeaturesCount * ds.SamplesCount); |
| 91 | TConstArrayRef<float> labels(ds.Labels, ds.SamplesCount); |
| 92 | TConstArrayRef<float> weights(ds.Weights, ds.SamplesCount); |
| 93 | TConstArrayRef<float> baseline(ds.Baseline, ds.SamplesCount * ds.BaselineDim); |
| 94 | return MakeDataProvider(features, (ui32)ds.FeaturesCount, labels, weights, baseline); |
| 95 | } |
| 96 | |
| 97 | |
| 98 | extern "C" { |
no test coverage detected