You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

one_hot_op_test.cc 1.8 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**
  2. * Copyright 2019 Huawei Technologies Co., Ltd
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include "common/common.h"
  17. #include "minddata/dataset/kernels/data/one_hot_op.h"
  18. #include "utils/log_adapter.h"
  19. using namespace mindspore::dataset;
  20. using mindspore::MsLogLevel::INFO;
  21. using mindspore::ExceptionType::NoExceptionType;
  22. using mindspore::LogStream;
  23. class MindDataTestOneHotOp : public UT::Common {
  24. protected:
  25. MindDataTestOneHotOp() {}
  26. };
  27. TEST_F(MindDataTestOneHotOp, TestOp) {
  28. MS_LOG(INFO) << "Doing MindDataTestOneHotOp.";
  29. std::vector<uint64_t> labels = {0, 1, 2};
  30. std::shared_ptr<Tensor> input;
  31. Tensor::CreateFromVector(labels, &input);
  32. std::shared_ptr<Tensor> output;
  33. std::unique_ptr<OneHotOp> op(new OneHotOp(5));
  34. Status s = op->Compute(input, &output);
  35. std::vector<uint64_t> out = {1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0};
  36. std::shared_ptr<Tensor> expected;
  37. Tensor::CreateFromVector(out, TensorShape{3, 5}, &expected);
  38. EXPECT_TRUE(s.IsOk());
  39. ASSERT_TRUE(output->shape() == expected->shape());
  40. ASSERT_TRUE(output->type() == expected->type());
  41. MS_LOG(DEBUG) << *output << std::endl;
  42. MS_LOG(DEBUG) << *expected << std::endl;
  43. ASSERT_TRUE(*output == *expected);
  44. MS_LOG(INFO) << "MindDataTestOneHotOp end.";
  45. }