__init__.py 1.1 KB
Newer Older
1
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
2
#
3 4 5
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
6
#
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
9 10 11 12 13 14
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

15
from .beta import Beta
16
from .categorical import Categorical
17
from .dirichlet import Dirichlet
18
from .distribution import Distribution
19
from .exponential_family import ExponentialFamily
20
from .kl import kl_divergence, register_kl
21
from .multinomial import Multinomial
22 23 24
from .normal import Normal
from .uniform import Uniform

25 26
__all__ = [  # noqa
    'Beta',
27
    'Categorical',
28
    'Dirichlet',
29 30
    'Distribution',
    'ExponentialFamily',
31
    'Multinomial',
32 33 34
    'Normal',
    'Uniform',
    'kl_divergence',
35
    'register_kl',
36
]