Skip to content

Add tensorboard docs #123

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,18 @@ def train_dogs_vs_cats(exp): # Get Experiment object as argument to function.
model.fit()
exp.metric(model.accuracy())
```

## Tensorboard auto-instrumentation.
If you use Tensorboard for monitoring, Hyperdash can monitor the same `tfevents` files. Simply point the Hyperdash SDK to your log directory. For example if you start tensorboard in Terminal like this:
```bash
tensorboard --logdir=/tmp/tensorflow_logs
```
You would run in a seperate terminal tab:
```bash
hd tensorboard -n ModelNameHere --logdir=/tmp/tensorflow_logs
```
Then Hyperdash will automatically categorize all future tensorflow runs in the same directory under the same model name. You'll even get push notifications and real-time metrics!

## API Keys
### Storage

Expand Down