Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update documentation #145

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 50 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Use Hyperdash if you're looking for cloud-based model monitoring that:
* Saves your experiment's print output (standard out / error) as a local log file.
* Notifies you when a long-running experiment has finished.

Hyperdash is compatible with: **Python 2.7-3.6**
Hyperdash is compatible with: **Python 2.7-3.8**

## Installation
*Foreword: We care deeply about making Hyperdash fast and easy to install on Linux, Mac, and Windows. If you find a snag along the way, please let us know at [email protected]!*
Expand Down Expand Up @@ -119,6 +119,55 @@ def train_dogs_vs_cats(exp): # Get Experiment object as argument to function.
model.fit()
exp.metric(model.accuracy())
```


### Keras Callbacks

Hyperdash has an included keras callback module:
```python
from hyperdash import Experiment
exp = Experiment ("Keras callback showcase")

callbacks=[exp.callbacks.keras]

history = training_model.fit(train_dataset,
epochs=epochs,
callbacks=callbacks,
validation_data=validation_dataset,
validation_steps=steps
)
```
This callback will monitor validation loss (val_loss) and the validation accuracy (val_acc).

If you want to monitor other metrics, you will have to define a callback yourself:
```python
from hyperdash import Experiment
from tensorflow.keras.callbacks import Callback

class Hyperdash(Callback):
def __init__(self, entries, exp):
super(Hyperdash, self).__init__()
self.entries = entries
self.exp = exp
def on_epoch_end(self, epoch, logs=None):
for entrie in self.entries:
log = logs.get(entrie)
if log is not None:
self.exp.metric(entrie, log)

callback_hd = Hyperdash(['accuracy', 'loss', 'val_accuracy', 'val_loss'], exp) # Here you list the metrics you want to track

callbacks = [callback_hd]

history = training_model.fit(train_dataset,
epochs=epochs,
callbacks=callbacks,
validation_data=validation_dataset,
validation_steps=steps
)
```


## API Keys
### Storage

Expand Down
4 changes: 2 additions & 2 deletions hyperdash/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,11 +217,11 @@ def __init__(self, exp):
def on_epoch_end(self, epoch, logs=None):
if not logs:
logs = {}
val_acc = logs.get("val_acc")
val_acc = logs.get("val_accuracy")
val_loss = logs.get("val_loss")

if val_acc is not None:
self._exp.metric("val_acc", val_acc)
self._exp.metric("val_accuracy", val_acc)
if val_loss is not None:
self._exp.metric("val_loss", val_loss)
cb = _KerasCallback(self._exp)
Expand Down