Searched refs:columns_to_project (Results 1 – 5 of 5) sorted by relevance
58 std::vector<std::string> columns_to_project = {"col_sint16", "col_float", "col_2d"}; in TEST_F() local59 std::shared_ptr<ProjectOp> my_project_op = std::make_shared<ProjectOp>(columns_to_project); in TEST_F()87 ASSERT_EQ(tensor_list.size(), columns_to_project.size()); in TEST_F()
70 std::vector<std::string> columns_to_project = {"image"}; in TEST_F() local71 ds2 = ds2->Project(columns_to_project); in TEST_F()
263 std::vector<std::string> columns_to_project = {"X", "Y", "Z", "label", "A", "B"}; in TEST_F() local264 std::shared_ptr<ProjectOp> my_project_op = std::make_shared<ProjectOp>(columns_to_project); in TEST_F()
29 ProjectOp::ProjectOp(const std::vector<std::string> &columns_to_project) in ProjectOp() argument30 : PipelineOp(0), columns_to_project_(columns_to_project) {} in ProjectOp()
31 explicit ProjectOp(const std::vector<std::string> &columns_to_project);