Skip to content
Snippets Groups Projects
Commit b8080a10 authored by hsharif3's avatar hsharif3
Browse files

Update Keras README.md

parent 6f8e4c98
No related branches found
No related tags found
No related merge requests found
...@@ -111,6 +111,20 @@ These are described here: ...@@ -111,6 +111,20 @@ These are described here:
Trains the Keras model constructed in `buildModel` and is expected to return the Trains the Keras model constructed in `buildModel` and is expected to return the
trained keras model - training parameters should be tuned here. trained keras model - training parameters should be tuned here.
### Directly using Keras Frontend API
Alternate to extending the `Benchmark` class, users may directly invoke the Keras Frontend API. This can be done as:
```python
from keras_frontend.approxhpvm_translator import translate_to_approxhpvm
# Construct and train your Keras Model (or load pre-trained weights)
translate_to_approxhpvm(model, data_dir, src_dir, test_data, test_labels, tune_data, tune_labels, batch_size, num_classes)
```
## Automated Tests ## Automated Tests
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment