An open API service indexing awesome lists of open source software.

https://github.com/khirotaka/tf_eager_samples

Samples of TensorFlow Eager Execution
https://github.com/khirotaka/tf_eager_samples

tensorflow tensorflow-eager tensorflow-examples

Last synced: about 2 months ago
JSON representation

Samples of TensorFlow Eager Execution

Awesome Lists containing this project

README

        

# tf_eager_samples

TensorFlow Eager Execution samples (for me 😁)

# Samples
- [MNIST](https://github.com/KawashimaHirotaka/tf_eager_samples/blob/master/samples/Dense_MNIST.py)
- [CIFAR-10 CNN](https://github.com/KawashimaHirotaka/tf_eager_samples/blob/master/samples/CNN_CIFAR10.py)

# Utilities
- [utils](https://github.com/KawashimaHirotaka/tf_eager_samples/blob/master/samples/utils.py)

It contains the following functions.
```
loss : calculate loss
grad : calculate gradients
train : train function
test : test function
predict : prediction
```