tf-fast-api

tf fast api


Keywords
tf
License
MIT
Install
pip install tf-fast-api==0.0.1

Documentation

tensorflow_fast_api

python setup.py build install

use_guide

python test.py
from tf_fast_api import *
tf.random.set_seed(2021)
x = tf.random.normal((3,5))
print(x.sum())
print(x.reduce_sum())
print(tf.reduce_sum(x))
#tf.Tensor(1.4016838, shape=(), dtype=float32)
#tf.Tensor(1.4016838, shape=(), dtype=float32)
#tf.Tensor(1.4016838, shape=(), dtype=float32)