Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dancsalo/tensorbase
Minimalistic Framework for End-to-End TensorFlow Applications.
https://github.com/dancsalo/tensorbase
filemanager tensorflow tensorflow-framework
Last synced: 27 days ago
JSON representation
Minimalistic Framework for End-to-End TensorFlow Applications.
- Host: GitHub
- URL: https://github.com/dancsalo/tensorbase
- Owner: dancsalo
- License: mit
- Created: 2016-11-20T20:56:37.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-06T16:06:59.000Z (almost 7 years ago)
- Last Synced: 2024-10-09T12:33:16.060Z (about 1 month ago)
- Topics: filemanager, tensorflow, tensorflow-framework
- Language: Python
- Homepage:
- Size: 127 KB
- Stars: 2
- Watchers: 1
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## TensorBase: Minimalistic TensorFlow Framework
TensorBase provides a set of Python classes that abstract the typical functions involved
in a machine learning application and facilitate the creation of new applications
from data management and to model implementation. TensorBase differs from other
TensorFlow-compatible APIs such as Keras and PrettyTensor in several ways:1. Has a simpler structure but demands more knowledge of TensorFlow syntax
2. Facilitates the creation of new layers and functions in networks and training
3. Addresses data and metrics (e.g. loss, accuracy) management## Contents
The TensorBase packages contains 3 Classes in ```base.py``` and 1 Class in ```data.py```.### Base:
* **Model**: a parent class that defines the general structure of TensorFlow models and manages metrics.
* **Layers**: a parent class that iteratively creates connected and convolutional networks.
* **Data**: a parent class for batch generation.### Data:
* **MNIST**: a child class that generates batchs for the MNIST dataset.