Skip to content

Instantly share code, notes, and snippets.

View lukas's full-sized avatar

Lukas Biewald lukas

View GitHub Profile
import tensorflow as tf
import wandb
# logging code
run = wandb.init()
config = run.config
# load data
(X_train, y_train), (X_test, y_test) = tf.keras.datasets.mnist.load_data()
img_width = X_train.shape[1]
import numpy as np
import os
import wandb
from wandb.keras import WandbCallback
import tensorflow as tf
run = wandb.init()
config = run.config
config.dropout = 0.25
config.dense_layer_nodes = 100