namespace lm { namespace interpolate { | |
struct Config { | |
std::vector<float> lambdas; | |
util::stream::SortConfig sort; | |
std::size_t BufferSize() const { return sort.buffer_size; } | |
}; | |
void Pipeline(util::FixedArray<ModelBuffer> &models, const Config &config, int write_file); | |
}} // namespaces | |