Skip to main content

No bullshit, dead simple training visualizer for tf-keras.

Project description

Training Dashboard

A no bullshit, dead simple training visualizer for tf-keras.

Usage

TrainingDashboard is meant to be used as a callback passed to the fit() function.

  from training_dashboard import TrainingDashboard
  callback = TrainingDashboard(validation=True,
                               min_loss=0,
                               metrics=["accuracy", "auc"],
                               batch_step=10,
                               min_metric_dict={"accuracy": 0, "auc": 0},
                               max_metric_dict={"accuracy": 1, "auc": 1})
  model.fit(x_train,
            y_train,
            batch_size=512,
            epochs=25,
            verbose=1,
            validation_split=0.2,
            callbacks=[callback])

Example Output

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

training_dashboard-0.1.0.tar.gz (5.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page