mixin.py 468 B

12345678910111213141516171819
  1. # !/usr/bin/env python3
  2. # -*- coding: UTF-8 -*-
  3. ################################################################################
  4. #
  5. # Copyright (c) 2024 Baidu.com, Inc. All Rights Reserved
  6. #
  7. ################################################################################
  8. """
  9. Author: PaddlePaddle Authors
  10. """
  11. class FromDictMixin(object):
  12. """ FromDictMixin """
  13. @classmethod
  14. def from_dict(cls, dict_):
  15. """ from dict """
  16. return cls(**dict_)