8000 GitHub - Remper/pokedem-models: Training and model generation code for pokedem-plus
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Remper/pokedem-models

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pokedem-models CI status

Training and model generation code for pokedem-plus

Examples

API startup

api.py implements an entry point for the API that exposes a single trained model via /predict?features=[x1,x2,x3,...] method

python api.py --input model

Where model is produced by training scripts described below

Basic deep neural network

train.py implements multiple dense layers with tanh as an activation function with a softmax on top. Training set should be in SVM format.

python train.py --train features.svm

Installation

  1. Install following ubuntu packets (or use their counterparts in other systems/build from sources):

    • libblas-dev
    • liblapack-dev
    • gfortran
    • python-numpy
    • python-scipy
    • python3-numpy
    • python3-scipy
  2. Install python dependencies:

    pip install -r requirements.txt

  3. Install Tensorflow for your system using the official guide

About

Training and model generation code for pokedem-plus

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0