Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hpvm-release
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
hpvm-release
Commits
34f904b6
Commit
34f904b6
authored
4 years ago
by
hsharif3
Browse files
Options
Downloads
Patches
Plain Diff
Update Keras README.md
parent
121329c5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hpvm/projects/keras/README.md
+25
-9
25 additions, 9 deletions
hpvm/projects/keras/README.md
with
25 additions
and
9 deletions
hpvm/projects/keras/README.md
+
25
−
9
View file @
34f904b6
...
@@ -42,6 +42,8 @@ python setup.py install
...
@@ -42,6 +42,8 @@ python setup.py install
Benchmarks under
`./src/`
Benchmarks under
`./src/`
**NOTE:**
Activate conda environment (above) before running benchmarks
List of benchmarks and the expected accuracies:
List of benchmarks and the expected accuracies:
| Benchmark | Accuracy |
| Benchmark | Accuracy |
...
@@ -57,12 +59,11 @@ List of benchmarks and the expected accuracies:
...
@@ -57,12 +59,11 @@ List of benchmarks and the expected accuracies:
| VGG16-CIFAR100 | 66.50 |
| VGG16-CIFAR100 | 66.50 |
| VGG16-ImageNet | 69.46 |
| VGG16-ImageNet | 69.46 |
Activate conda environment (above) before running benchmarks
### Synopsis
### Synopsis
```
```
python src/${BENCH_NAME}.py [hpvm_reload|keras_reload] [frontend
|keras_dump
]
python src/${BENCH_NAME}.py [hpvm_reload|keras_reload] [frontend]
```
```
...
@@ -72,30 +73,45 @@ python src/${BENCH_NAME}.py [hpvm_reload|keras_reload] [frontend|keras_dump]
...
@@ -72,30 +73,45 @@ python src/${BENCH_NAME}.py [hpvm_reload|keras_reload] [frontend|keras_dump]
`keras_reload`
: Reloads weights in Keras
`.h5`
file format
`keras_reload`
: Reloads weights in Keras
`.h5`
file format
`frontend`
: Invokes the HPVM frontend and dumps weights in directory specified in constructor
`frontend`
: Invokes the HPVM frontend and dumps weights (in HPVM
`.bin`
format) in directory specified
`keras_dump`
: Dumps keras .h5 format model weights in directory specified in constructor
### Building New Benchmarks
### Building New Benchmarks
All benchmarks inherit from the commom parent
`Benchmark`
class.
All benchmarks inherit from the commom parent
`Benchmark`
class.
Each benchmark overrides virtual functions for building the model, training,
inference,
Each benchmark overrides virtual functions for building the model, training,
and data preprocessing.
and data preprocessing.
`def buildModel(self)`
:
`def buildModel(self)`
:
returns a keras model
Constructs and
returns a keras model
`def data_preprocess(self)`
:
`def data_preprocess(self)`
:
returns X_train, y_train, X_test, y_test, X_tuner, and y_tuner data — in that order; this data will be directly used later for training and inference
returns X_train, y_train, X_test, y_test, X_tuner, and y_tuner data (in that order):
These are described here:
*
`X_train:`
Training data (fp32) in NCHW format
*
`y_train:`
Training labels (int32)
*
`X_test:`
Testing/Evaluation data in NCHW format
*
`y_test:`
Testing/Evaluation labels
*
`X_tuner:`
Data to be used for autotuning
*
`y_tuner:`
Labels corresponding to tuning data
`def trainModel(self, model, X_train, y_train, X_test, y_test)`
:
`def trainModel(self, model, X_train, y_train, X_test, y_test)`
:
returns a trained keras model
Trains the Keras model constructed in
`buildModel`
and is expected to return the
trained keras model - training parameters should be tuned here.
## Limitations
*
We mosty support convolutional neural networks - RNNs/LSTMS are not supported
*
We currently only support models in NCHW format (NHWC is not supported)
*
Softmax operator should be the last operation in the CNN pipeline
*
Softmax operation must be a separate operator (not specified as activation to another type of Keras operator)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment