tqdm/tests/tests_keras.py

95 lines
2.7 KiB
Python

from __future__ import division
from tqdm import tqdm
from .tests_tqdm import pretest_posttest # NOQA
from .tests_tqdm import importorskip, StringIO, closing
def test_keras():
"""Test tqdm.keras.TqdmCallback"""
TqdmCallback = importorskip("tqdm.keras").TqdmCallback
np = importorskip("numpy")
try:
import keras as K
except ImportError:
K = importorskip("tensorflow.keras")
# 1D autoencoder
dtype = np.float32
model = K.models.Sequential(
[K.layers.InputLayer((1, 1), dtype=dtype), K.layers.Conv1D(1, 1)]
)
model.compile("adam", "mse")
x = np.random.rand(100, 1, 1).astype(dtype)
batch_size = 10
batches = len(x) / batch_size
epochs = 5
with closing(StringIO()) as our_file:
class Tqdm(tqdm):
"""redirected I/O class"""
def __init__(self, *a, **k):
k.setdefault("file", our_file)
super(Tqdm, self).__init__(*a, **k)
# just epoch (no batch) progress
model.fit(
x,
x,
epochs=epochs,
batch_size=batch_size,
verbose=False,
callbacks=[
TqdmCallback(
epochs,
data_size=len(x),
batch_size=batch_size,
verbose=0,
tqdm_class=Tqdm,
)
],
)
res = our_file.getvalue()
assert "{epochs}/{epochs}".format(epochs=epochs) in res
assert "{batches}/{batches}".format(batches=batches) not in res
# full (epoch and batch) progress
our_file.seek(0)
our_file.truncate()
model.fit(
x,
x,
epochs=epochs,
batch_size=batch_size,
verbose=False,
callbacks=[
TqdmCallback(
epochs,
data_size=len(x),
batch_size=batch_size,
verbose=2,
tqdm_class=Tqdm,
)
],
)
res = our_file.getvalue()
assert "{epochs}/{epochs}".format(epochs=epochs) in res
assert "{batches}/{batches}".format(batches=batches) in res
# auto-detect epochs and batches
our_file.seek(0)
our_file.truncate()
model.fit(
x,
x,
epochs=epochs,
batch_size=batch_size,
verbose=False,
callbacks=[TqdmCallback(verbose=2, tqdm_class=Tqdm)],
)
res = our_file.getvalue()
assert "{epochs}/{epochs}".format(epochs=epochs) in res
assert "{batches}/{batches}".format(batches=batches) in res