【发布时间】:2019-11-29 10:04:13
【问题描述】:
我正在使用 Talos 和 Google colab TPU 运行 Keras 模型的超参数调整。请注意,我使用的是 Tensorflow 2.0.0 和 Keras 2.2.4-tf。
# pip install --upgrade tensorflow
# pip install --upgrade --force-reinstall tensorflow-gpu
import os
import tensorflow as tf
import talos as ta
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Dense
tf.compat.v1.disable_eager_execution()
def iris_model(x_train, y_train, x_val, y_val, params):
# Specify a distributed strategy to use TPU
resolver = tf.distribute.cluster_resolver.TPUClusterResolver(tpu='grpc://' + os.environ['COLAB_TPU_ADDR'])
tf.config.experimental_connect_to_host(resolver.master())
tf.tpu.experimental.initialize_tpu_system(resolver)
strategy = tf.distribute.experimental.TPUStrategy(resolver)
# Use the strategy to create and compile a Keras model
with strategy.scope():
model = Sequential()
model.add(Dense(32, input_dim=4, activation=params['activation']))
model.add(Dense(3, activation='softmax'))
model.compile(optimizer=params['optimizer'], loss=params['losses'])
# Convert the train set to a Dataset to use TPU
dataset = tf.data.Dataset.from_tensor_slices((x_train, y_train))
dataset = dataset.cache().shuffle(1000, reshuffle_each_iteration=True).repeat().batch(params['batch_size'], drop_remainder=True)
# Fit the Keras model on the dataset
out = model.fit(dataset,
batch_size=params['batch_size'],
epochs=params['epochs'],
validation_data=[x_val, y_val],
verbose=0,
steps_per_epoch=4)
return out, model
x, y = ta.templates.datasets.iris()
# Create a hyperparameter distributions
p = {'activation': ['relu', 'elu'],
'optimizer': ['Nadam', 'Adam'],
'losses': ['logcosh'],
'batch_size': (20, 50, 5),
'epochs': [10, 20]}
# Use Talos to scan the best hyperparameters of the Keras model
scan_object = ta.Scan(x, y, model=iris_model, params=p, fraction_limit=0.1, experiment_name='first_test')
使用 tf.data.Dataset 将训练集转换为数据集后,使用 out = model.fit 拟合模型时出现以下错误: p>
/usr/local/lib/python3.6/dist-packages/tensorflow_core/python/distribute/distribute_lib.py in _wrong_strategy_scope(strategy, context)
218 raise RuntimeError(
219 "Mixing different tf.distribute.Strategy objects: %s is not %s" %
--> 220 (context.strategy, strategy))
221
222
RuntimeError: Mixing different tf.distribute.Strategy objects: <tensorflow.python.distribute.tpu_strategy.TPUStrategy object at 0x7f9886506c50> is not <tensorflow.python.distribute.tpu_strategy.TPUStrategy object at 0x7f988aa04080>
【问题讨论】:
-
仅供参考,TPU 还没有为 TensorFlow 做好准备。所以你可能会遇到
Encountered when executing an operation using EagerExecutor这样的错误。 Google Colab 的窥视者尚未将他们的 TPU 系统后端更新到 2.0。
标签: tensorflow keras google-colaboratory google-cloud-tpu talos