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

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

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"
```