test_get_model.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. from __future__ import absolute_import
  15. from __future__ import division
  16. from __future__ import print_function
  17. import os
  18. import paddle
  19. import ppdet
  20. import unittest
  21. # NOTE: weights downloading costs time, we choose
  22. # a small model for unittesting
  23. MODEL_NAME = 'ppyolo/ppyolo_tiny_650e_coco'
  24. class TestGetConfigFile(unittest.TestCase):
  25. def test_main(self):
  26. try:
  27. cfg_file = ppdet.model_zoo.get_config_file(MODEL_NAME)
  28. assert os.path.isfile(cfg_file)
  29. except:
  30. self.assertTrue(False)
  31. class TestGetModel(unittest.TestCase):
  32. def test_main(self):
  33. try:
  34. model = ppdet.model_zoo.get_model(MODEL_NAME)
  35. assert isinstance(model, paddle.nn.Layer)
  36. except:
  37. self.assertTrue(False)
  38. if __name__ == '__main__':
  39. unittest.main()