MCPcopy Create free account
hub / github.com/catboost/catboost / Load

Function Load

catboost/private/libs/algo/plot.cpp:172–180  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

170}
171
172static void Load(ui32 docCount, IInputStream* input, TVector<TVector<double>>* output) {
173 TVector<double> line;
174 for (ui32 i = 0; i < docCount; ++i) {
175 ::Load(input, line);
176 for (ui32 dim = 0; dim < output->size(); ++dim) {
177 (*output)[dim][i] = line[dim];
178 }
179 }
180}
181
182static ui32 GetDocCount(TConstArrayRef<TProcessedDataProvider> datasetParts) {
183 ui32 answer = 0;

Callers 15

LoadMethod · 0.70
plot.cppFile · 0.70
LoadApproxMethod · 0.70
LoadApproxesMethod · 0.70
LoadHeaderMethod · 0.50
LoadMethod · 0.50
LoadNonOwningMethod · 0.50
LoadLargeParametersMethod · 0.50
LoadMethod · 0.50
LoadLargeParametersMethod · 0.50
LoadLargeParametersMethod · 0.50
LoadHeaderMethod · 0.50

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected