Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andydevs/tensorflow-demo-1
Demonstrating creating a training application using tensorflow
https://github.com/andydevs/tensorflow-demo-1
flask keras python tensorflow
Last synced: 29 days ago
JSON representation
Demonstrating creating a training application using tensorflow
- Host: GitHub
- URL: https://github.com/andydevs/tensorflow-demo-1
- Owner: andydevs
- License: mit
- Created: 2020-08-02T21:55:52.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-11T02:35:10.000Z (over 4 years ago)
- Last Synced: 2024-11-08T21:33:43.510Z (3 months ago)
- Topics: flask, keras, python, tensorflow
- Language: Python
- Homepage:
- Size: 740 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Tensorflow Demo 1
================================================================[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
Demonstrating creating a training application using Tensorflow.
The Data
----------------------------------------------------------------This project aims to predict if a mushroom is poisonous or not
depending on various characteristics of the mushroom. The data
is stored in the `data` directory, which contains the `mushrooms.csv`
file, as well as a `meta.yaml` that outlines the structure of each
feature (column) of the csv file.Developing
----------------------------------------------------------------### Setup
Clone source tree from github
$ git clone https://github.com/andydevs/tensorflow-demo-1.git
Create environment using virtualenv and activate it
$ virtualenv env
$ ./env/Scripts/activateInstall requirements
$ pip install -r requirements.txt
### Commands
To run the training step.
$ python -m training.task
To run the web app
$ flask run