https://github.com/isur/keras-training
Simple python app for training Keras + jupyter notebooks.
https://github.com/isur/keras-training
Last synced: about 1 year ago
JSON representation
Simple python app for training Keras + jupyter notebooks.
- Host: GitHub
- URL: https://github.com/isur/keras-training
- Owner: Isur
- Archived: true
- Created: 2020-03-09T20:50:40.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-08T17:36:51.000Z (about 6 years ago)
- Last Synced: 2025-03-03T00:23:42.296Z (over 1 year ago)
- Language: Python
- Size: 3.38 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# How to start
Project use `python3.7.
`
## Create virtual environment
Linux: `python3.7 -m venv venv`
Windows: `py -m venv venv`
## Activate virtual environment
Linux: `source ./venv/bin/activate`
Windows: `.\venv\Scripts\activate`
## Install packages
`pip install --upgrade pip` to get latest version of pip
`pip install -r req.txt`
## Save packages
`pip freeze > req.txt`
## Run Jupyter
`jupyter lab` or `jupyter notebook`
# Structure
`docs` - jupyter notebooks, documentations
`src` - source files
`req.txt` - requirements file.
`app.py` - main file - run this to start ap