"vscode:/vscode.git/clone" did not exist on "6a2839a2907115c2459dd2b00f480998352f6f35"
Commit d3c8cf9e authored by Neal Wu's avatar Neal Wu Committed by GitHub
Browse files

Merge pull request #1161 from tensorflow/additional-1.0-upgrades

Additional upgrades to 1.0 and code fixes
parents d50c51cf 546fd48e
...@@ -394,9 +394,9 @@ def main(_): ...@@ -394,9 +394,9 @@ def main(_):
tf.logging.set_verbosity(tf.logging.INFO) tf.logging.set_verbosity(tf.logging.INFO)
with tf.Graph().as_default(): with tf.Graph().as_default():
###################### #######################
# Config model_deploy# # Config model_deploy #
###################### #######################
deploy_config = model_deploy.DeploymentConfig( deploy_config = model_deploy.DeploymentConfig(
num_clones=FLAGS.num_clones, num_clones=FLAGS.num_clones,
clone_on_cpu=FLAGS.clone_on_cpu, clone_on_cpu=FLAGS.clone_on_cpu,
...@@ -414,9 +414,9 @@ def main(_): ...@@ -414,9 +414,9 @@ def main(_):
dataset = dataset_factory.get_dataset( dataset = dataset_factory.get_dataset(
FLAGS.dataset_name, FLAGS.dataset_split_name, FLAGS.dataset_dir) FLAGS.dataset_name, FLAGS.dataset_split_name, FLAGS.dataset_dir)
#################### ######################
# Select the network # # Select the network #
#################### ######################
network_fn = nets_factory.get_network_fn( network_fn = nets_factory.get_network_fn(
FLAGS.model_name, FLAGS.model_name,
num_classes=(dataset.num_classes - FLAGS.labels_offset), num_classes=(dataset.num_classes - FLAGS.labels_offset),
......
...@@ -158,11 +158,11 @@ class Seq2SeqAttentionModel(object): ...@@ -158,11 +158,11 @@ class Seq2SeqAttentionModel(object):
for layer_i in xrange(hps.enc_layers): for layer_i in xrange(hps.enc_layers):
with tf.variable_scope('encoder%d'%layer_i), tf.device( with tf.variable_scope('encoder%d'%layer_i), tf.device(
self._next_device()): self._next_device()):
cell_fw = tf.nn.rnn_cell.LSTMCell( cell_fw = tf.contrib.rnn.LSTMCell(
hps.num_hidden, hps.num_hidden,
initializer=tf.random_uniform_initializer(-0.1, 0.1, seed=123), initializer=tf.random_uniform_initializer(-0.1, 0.1, seed=123),
state_is_tuple=False) state_is_tuple=False)
cell_bw = tf.nn.rnn_cell.LSTMCell( cell_bw = tf.contrib.rnn.LSTMCell(
hps.num_hidden, hps.num_hidden,
initializer=tf.random_uniform_initializer(-0.1, 0.1, seed=113), initializer=tf.random_uniform_initializer(-0.1, 0.1, seed=113),
state_is_tuple=False) state_is_tuple=False)
...@@ -188,7 +188,7 @@ class Seq2SeqAttentionModel(object): ...@@ -188,7 +188,7 @@ class Seq2SeqAttentionModel(object):
loop_function = _extract_argmax_and_embed( loop_function = _extract_argmax_and_embed(
embedding, (w, v), update_embedding=False) embedding, (w, v), update_embedding=False)
cell = tf.nn.rnn_cell.LSTMCell( cell = tf.contrib.rnn.LSTMCell(
hps.num_hidden, hps.num_hidden,
initializer=tf.random_uniform_initializer(-0.1, 0.1, seed=113), initializer=tf.random_uniform_initializer(-0.1, 0.1, seed=113),
state_is_tuple=False) state_is_tuple=False)
......
# Copyright 2015 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Import linear python op for backward compatibility."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
raise ImportError("This module is deprecated. Use tf.contrib.layers.linear.")
# Copyright 2015 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Import rnn python ops for backward compatibility."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
raise ImportError("This module is deprecated. Use tf.nn.rnn_* instead.")
# Copyright 2015 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Import rnn_cell python ops for backward compatibility."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
raise ImportError("This module is deprecated. Use tf.contrib.rnn instead.")
# Copyright 2015 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Import seq2seq python ops for backward compatibility."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
raise ImportError(
"This module is deprecated. Use tf.contrib.legacy_seq2seq instead.")
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment