forked from huawei/mindspore2022
199 lines
6.0 KiB
Python
199 lines
6.0 KiB
Python
|
|
# Copyright 2020 Huawei Technologies Co., Ltd
|
|
#
|
|
# 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
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# 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.
|
|
# ============================================================================
|
|
"""Utitly functions to help distribution class."""
|
|
import numpy as np
|
|
from mindspore.ops import _utils as utils
|
|
from mindspore.common.tensor import Tensor
|
|
from mindspore.common.parameter import Parameter
|
|
from mindspore.common import dtype as mstype
|
|
|
|
def cast_to_tensor(t, dtype=mstype.float32):
|
|
"""
|
|
Cast an user input value into a Tensor of dtype.
|
|
If the input t is of type Parameter, t is directly returned as a Parameter.
|
|
|
|
Args:
|
|
t (int, float, list, numpy.ndarray, Tensor, Parameter): object to be cast to Tensor.
|
|
dtype (mindspore.dtype): dtype of the Tensor. Default: mstype.float32.
|
|
|
|
Raises:
|
|
RuntimeError: if t cannot be cast to Tensor.
|
|
|
|
Returns:
|
|
Tensor.
|
|
"""
|
|
if isinstance(t, Parameter):
|
|
return t
|
|
if isinstance(t, Tensor):
|
|
#check if the Tensor in shape of Tensor(4)
|
|
if t.dim() == 0:
|
|
value = t.asnumpy()
|
|
return Tensor([t], dtype=dtype)
|
|
#convert the type of tensor to dtype
|
|
t.set_dtype(dtype)
|
|
return t
|
|
if isinstance(t, (list, np.ndarray)):
|
|
return Tensor(t, dtype=dtype)
|
|
if np.isscalar(t):
|
|
return Tensor([t], dtype=dtype)
|
|
raise RuntimeError("Input type is not supported.")
|
|
|
|
def convert_to_batch(t, batch_shape, dtype):
|
|
"""
|
|
Convert a Tensor to a given batch shape.
|
|
|
|
Args:
|
|
t (Tensor, Parameter): Tensor to be converted.
|
|
batch_shape (tuple): desired batch shape.
|
|
dtype (mindspore.dtype): desired dtype.
|
|
|
|
Raises:
|
|
RuntimeError: if the converison cannot be done.
|
|
|
|
Returns:
|
|
Tensor, with shape of batch_shape.
|
|
"""
|
|
if isinstance(t, Parameter):
|
|
return t
|
|
if isinstance(t, Tensor):
|
|
return Tensor(np.broadcast_to(t.asnumpy(), batch_shape), dtype=dtype)
|
|
return Tensor(np.broadcast_to(t, batch_shape), dtype=dtype)
|
|
|
|
def check_scalar_from_param(params):
|
|
"""
|
|
Check if params are all scalars.
|
|
|
|
Args:
|
|
params (dict): parameters used to initialize distribution.
|
|
|
|
Notes: String parameters are excluded.
|
|
"""
|
|
for value in params.values():
|
|
if isinstance(value, Parameter):
|
|
return False
|
|
if isinstance(value, (str, type(params['dtype']))):
|
|
continue
|
|
elif np.isscalar(value):
|
|
continue
|
|
else:
|
|
return False
|
|
return True
|
|
|
|
|
|
def calc_broadcast_shape_from_param(params):
|
|
"""
|
|
Calculate the broadcast shape from params.
|
|
|
|
Args:
|
|
params (dict): parameters used to initialize distribution.
|
|
|
|
Returns:
|
|
tuple.
|
|
"""
|
|
broadcast_shape = []
|
|
for value in params.values():
|
|
if isinstance(value, (str, type(params['dtype']))):
|
|
continue
|
|
if value is None:
|
|
return None
|
|
if isinstance(value, Parameter):
|
|
value_t = value.default_input
|
|
else:
|
|
value_t = cast_to_tensor(value, params['dtype'])
|
|
broadcast_shape = utils.get_broadcast_shape(broadcast_shape, list(value_t.shape), params['name'])
|
|
return tuple(broadcast_shape)
|
|
|
|
def check_greater_equal_zero(value, name):
|
|
"""
|
|
Check if the given Tensor is greater zero.
|
|
|
|
Args:
|
|
value (Tensor, Parameter): value to be checked.
|
|
name (str) : name of the value.
|
|
|
|
Raises:
|
|
ValueError: if the input value is less than zero.
|
|
|
|
"""
|
|
if isinstance(value, Parameter):
|
|
if not isinstance(value.default_input, Tensor):
|
|
return
|
|
value = value.default_input
|
|
comp = np.less(value.asnumpy(), np.zeros(value.shape))
|
|
if comp.any():
|
|
raise ValueError(f'{name} should be greater than ot equal to zero.')
|
|
|
|
def check_greater_zero(value, name):
|
|
"""
|
|
Check if the given Tensor is strictly greater than zero.
|
|
|
|
Args:
|
|
value (Tensor, Parameter): value to be checked.
|
|
name (str) : name of the value.
|
|
|
|
Raises:
|
|
ValueError: if the input value is less than or equal to zero.
|
|
|
|
"""
|
|
if isinstance(value, Parameter):
|
|
if isinstance(value.default_input, MetaTensor):
|
|
return
|
|
value = value.default_input
|
|
comp = np.less(np.zeros(value.shape), value.asnumpy())
|
|
if not comp.all():
|
|
raise ValueError(f'{name} should be greater than zero.')
|
|
|
|
def check_greater(a, b, name_a, name_b):
|
|
"""
|
|
Check if Tensor b is strictly greater than Tensor a.
|
|
|
|
Args:
|
|
a (Tensor, Parameter): input tensor a.
|
|
b (Tensor, Parameter): input tensor b.
|
|
name_a (str): name of Tensor_a.
|
|
name_b (str): name of Tensor_b.
|
|
|
|
Raises:
|
|
ValueError: if b is less than or equal to a
|
|
"""
|
|
if isinstance(a, Parameter) or isinstance(b, Parameter):
|
|
return
|
|
comp = np.less(a.asnumpy(), b.asnumpy())
|
|
if not comp.all():
|
|
raise ValueError(f'{name_a} should be less than {name_b}')
|
|
|
|
|
|
def check_prob(p):
|
|
"""
|
|
Check if p is a proper probability, i.e. 0 <= p <=1.
|
|
|
|
Args:
|
|
p (Tensor, Parameter): value to be checked.
|
|
|
|
Raises:
|
|
ValueError: if p is not a proper probability.
|
|
"""
|
|
if isinstance(p, Parameter):
|
|
if not isinstance(p.default_input, Tensor):
|
|
return
|
|
p = p.default_input
|
|
comp = np.less(p.asnumpy(), np.zeros(p.shape))
|
|
if comp.any():
|
|
raise ValueError('Probabilities should be greater than or equal to zero')
|
|
comp = np.greater(p.asnumpy(), np.ones(p.shape))
|
|
if comp.any():
|
|
raise ValueError('Probabilities should be less than or equal to one')
|