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 2.2 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 "common/cvop_common.h"
  18. #include "dataset/kernels/data/one_hot_op.h"
  19. #include "dataset/core/cv_tensor.h"
  20. #include "utils/log_adapter.h"
  21. using namespace mindspore::dataset;
  22. using mindspore::MsLogLevel::INFO;
  23. using mindspore::ExceptionType::NoExceptionType;
  24. using mindspore::LogStream;
  25. class MindDataTestOneHotOp : public UT::CVOP::CVOpCommon {
  26. protected:
  27. MindDataTestOneHotOp() : CVOpCommon() {}
  28. };
  29. TEST_F(MindDataTestOneHotOp, TestOp) {
  30. MS_LOG(INFO) << "Doing MindDataTestOneHotOp.";
  31. uint64_t labels[3] = {0, 1, 2};
  32. TensorShape shape({3});
  33. std::shared_ptr<Tensor> input = std::make_shared<Tensor>(shape, DataType(DataType::DE_UINT64),
  34. reinterpret_cast <unsigned char *>(labels));
  35. std::shared_ptr<Tensor> output;
  36. std::unique_ptr<OneHotOp> op(new OneHotOp(5));
  37. Status s = op->Compute(input, &output);
  38. uint64_t out[15] = {1, 0, 0, 0, 0,
  39. 0, 1, 0, 0, 0,
  40. 0, 0, 1, 0, 0};
  41. std::shared_ptr<Tensor> expected = std::make_shared<Tensor>(TensorShape{3, 5}, DataType(DataType::DE_UINT64),
  42. reinterpret_cast <unsigned char *>(out));
  43. EXPECT_TRUE(s.IsOk());
  44. ASSERT_TRUE(output->shape() == expected->shape());
  45. ASSERT_TRUE(output->type() == expected->type());
  46. MS_LOG(DEBUG) << *output << std::endl;
  47. MS_LOG(DEBUG) << *expected << std::endl;
  48. ASSERT_TRUE(*output == *expected);
  49. MS_LOG(INFO) << "MindDataTestOneHotOp end.";
  50. }