chainer.functions.
cast
(x, typ)[source]¶
入力値を与えられた型にキャストする。
Parameters: |
|
---|---|
Returns: |
キャストされた配列を保持しているVariable。 |
Return type: |
Example
>>> x = np.arange(0, 3, dtype=np.float64)
>>> x.dtype
dtype('float64')
>>> y = F.cast(x, np.float32)
>>> y.dtype
dtype('float32')
>>> y = F.cast(x, 'float16')
>>> y.dtype
dtype('float16')