Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vika-F committed Nov 6, 2024
1 parent 8f47003 commit a07a785
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class logloss_test : public te::float_algo_fixture<std::tuple_element_t<0, Param

auto builder = te::csr_table_builder<float_t>(n_, p_, 0.3, sparse_indexing::zero_based);
this->data_ = builder.build_csr_table(this->get_policy());
this->dense_data_ = builder.build_dense_table();
this->dense_data_ = builder.build_dense_table(this->get_policy());

const auto parameters =
GENERATE_DATAFRAME(te::dataframe_builder{ 1, p_ + 1 }.fill_uniform(-1, 1));
Expand Down

0 comments on commit a07a785

Please sign in to comment.