The API will create a ``Variable`` object from numpy\.ndarray or Variable object.
Args:
Parameters:
value(ndarray): the numpy value need to be convert
value(ndarray): The numpy\.ndarray object that needs to be converted, it can be multi-dimension, and the data type is one of numpy\.{float16, float32, float64, int16, int32, int64, uint8, uint16}.
block(fluid.Block|None): which block this variable will be in
block(fluid.Block, optional): Which block this variable will be in. Default: None.
name(str|None): Name of Variable
name(str, optional): The default value is None. Normally there is no need for user to set this property. For more information, please refer to :ref:`api_guide_Name`
return:
Returns:
Variable: The variable created from given numpy
Variable: ``Tensor`` created from the specified numpy\.ndarray object, data type and shape is the same as ``value`` .