Neptune.ai tensorflow-keras integration library
Project description
Neptune + Keras integration
Experiment tracking, model registry, data versioning, and live model monitoring for Keras trained models.
What will you get with this integration?
- Log, display, organize, and compare ML experiments in a single place
- Version, store, manage, and query trained models, and model building metadata
- Record and monitor model training, evaluation, or production runs live
- Collaborate with a team
What will be logged to Neptune?
- hyperparameters for every run,
- learning curves for losses and metrics during training,
- hardware consumption and stdout/stderr output during training,
- TensorFlow tensors as images to see model predictions live,
- training code and Git commit information,
- model weights,
- other metadata
Example charts in the Neptune UI with logged accuracy and loss
Resources
Example
On the command line:
pip install neptune-tensorflow-keras
In Python:
import neptune
from neptune.integrations.tensorflow_keras import NeptuneCallback
from neptune import ANONYMOUS_API_TOKEN
# Start a run
run = neptune.init_run(
project="common/tf-keras-integration",
api_token=ANONYMOUS_API_TOKEN,
)
# Create a NeptuneCallback instance
neptune_cbk = NeptuneCallback(run=run, base_namespace="metrics")
# Pass the callback to model.fit()
model.fit(
x_train,
y_train,
epochs=5,
batch_size=64,
callbacks=[neptune_cbk],
)
# Stop the run
run.stop()
Support
If you got stuck or simply want to talk to us, here are your options:
- Check our FAQ page
- You can submit bug reports, feature requests, or contributions directly to the repository.
- Chat! When in the Neptune application click on the blue message icon in the bottom-right corner and send a message. A real person will talk to you ASAP (typically very ASAP),
- You can just shoot us an email at support@neptune.ai
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for neptune_tensorflow_keras-2.1.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 80ffebcca61d5584f52b13b321a4d4735635f5a7e3ac5e79db3957bdc22b06b9 |
|
MD5 | 2168b6ba302a56ee7ab0129bc348b7ec |
|
BLAKE2b-256 | 7703eef0f99d51843695e6821d588ea12fcfa0597ab7e0a10f583bcc93523c6f |
Close
Hashes for neptune_tensorflow_keras-2.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2dbf2ed27936f1aa5d697947b88e8376343fdd019ca38721f41b8dc31420de20 |
|
MD5 | 81a8a01a7af1c818714b30ffcf10ad4c |
|
BLAKE2b-256 | 9b8e6cceebe7ad4a6399c441b1ef60d2e11210cb670c87c61007f9645ca1e10f |