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

https://github.com/pathak-ashutosh/tensorflow-like-api

A TensorFlow like API, although very simple, which can perform basic tasks of TensorFlow
https://github.com/pathak-ashutosh/tensorflow-like-api

api machine-learning python tensorflow

Last synced: 3 months ago
JSON representation

A TensorFlow like API, although very simple, which can perform basic tasks of TensorFlow

Awesome Lists containing this project

README

        

# TensorFlow like API
A TensorFlow like API, although very simple, which can perform basic tasks of TensorFlow. This is just an attempt to learn the workings
of Tensorflow by making a "mock API".

### How to run:
* Clone or download the repository and run `tf_api_test.py`
* You can also put any code in `tf_api_test.py` which you want to try and it will work as long as it conforms to the definitions in `tf_api.py`.

I followed [this](https://medium.com/@d3lm/understand-tensorflow-by-mimicking-its-api-from-scratch-faa55787170d) great article!