https://github.com/tmke8/tfxyz
Tensorflow framework
https://github.com/tmke8/tfxyz
machine-learning python tensorflow
Last synced: 2 months ago
JSON representation
Tensorflow framework
- Host: GitHub
- URL: https://github.com/tmke8/tfxyz
- Owner: tmke8
- License: gpl-3.0
- Created: 2017-03-15T15:47:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-28T12:20:17.000Z (over 9 years ago)
- Last Synced: 2025-10-29T03:24:45.942Z (8 months ago)
- Topics: machine-learning, python, tensorflow
- Language: Python
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tfXYZ
A framework on top of tensorflow.
## Dependencies
* Python 2.7/3.5+
* Python libraries: Tensorflow 1.0, scipy, sklearn, arff
## Usage
To simply execute the program, type
```
python main.py
```
Most of the behavior is determined by flags. To see a list of all flags do
```
python main.py --help
```
### Adding new "apps"
An *app* defines what the network is learning and how the result should be displayed. To add a new app add a python class that inherits from `BaseApp` in `apps/base.py`. The new class has to be in a python script in the subdirectory `apps`.
#### Example
Add a class called "Mnist" in `apps/digits.py`. Run it with
```
python main.py --apps="digits.Mnist"
```