SDK for DetaMetrics TensorBoard alternative.
Project description
DetaMetricsSDK
A Python SDK for interacting with my TensorBoard alternative that runs on Deta Space.
Installation
pip install detametrics
Usage
TensorFlow Callback
Requires Tensorflow to be installed.
from detametrics.tf import DetaMetricsTFCallback
# use in your keras model
model = ...
model.fit(
..., # other params here
callbacks=[DetaMetricsTFCallback("MY_URL_ID")]
)
Base API
Get your URL id from the UI on the Deta Space app.
from detametrics import DetaMetrics
metrics = DetaMetrics("MY_URL_ID") # get it from the Deta Space App UI
metrics.clear() # WARNING: clears all past metrics
metrics.set("GraphName", "LineName", 0.1)
metrics.set("GraphName", "LineName", 123.45)
metrics.set("GraphName", "LineName", 78.9)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
DetaMetrics-0.0.4.tar.gz
(2.9 kB
view hashes)
Built Distribution
Close
Hashes for DetaMetrics-0.0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c92636e67008d24e9ae6de9e4fefea81c75ca96f312ad4a0849457085ce592ad |
|
MD5 | c763f1707a6aa10ec8aea33af4051c5a |
|
BLAKE2b-256 | 27e3b3cf92e9f075795d2c9dc34b2c55f97e20f88a61a934442216433b88d802 |