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
- Host: GitHub
- URL: https://github.com/khirotaka/tf_eager_samples
- Owner: khirotaka
- License: mit
- Created: 2018-09-12T15:20:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-20T03:11:18.000Z (over 6 years ago)
- Last Synced: 2025-02-03T14:49:58.449Z (4 months ago)
- Topics: tensorflow, tensorflow-eager, tensorflow-examples
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```