简体   繁体   English

如何使德语翻译成英语?

[英]How to make German to English Translation work?

I tried out the English to German translation in the Colab notebook 'Welcome to the Tensor2Tensor Colab', which works. 我在有效的Colab笔记本“ Welcome to the Tensor2Tensor Colab”中尝试了英语到德语的翻译。 But I must miss something in the code to make it work for German to English. 但是我必须错过代码中的某些内容才能使其适用于德语到英语。

According to the following page https://github.com/tensorflow/tensor2tensor I added '_rev' in order to 'reverse' the translation. 根据下一页https://github.com/tensorflow/tensor2tensor,我添加了“ _rev”以“反向”翻译。 The two changes compared to the original notebook are marked using '# <-------------': 与原始笔记本相比,有两个更改用'#<-------------'标记:

# Fetch the problem
ende_problem = problems.problem("translate_ende_wmt32k_rev") # <------------- 

# Copy the vocab file locally so we can encode inputs and decode model outputs
# All vocabs are stored on GCS
vocab_name = "vocab.translate_ende_wmt32k.32768.subwords"
vocab_file = os.path.join(gs_data_dir, vocab_name)
!gsutil cp {vocab_file} {data_dir}

# Get the encoders from the problem
encoders = ende_problem.feature_encoders(data_dir)

# Setup helper functions for encoding and decoding
def encode(input_str, output_str=None):
  """Input str to features dict, ready for inference"""
  inputs = encoders["inputs"].encode(input_str) + [1]  # add EOS id
  batch_inputs = tf.reshape(inputs, [1, -1, 1])  # Make it 3D.
  return {"inputs": batch_inputs}

def decode(integers):
  """List of ints to str"""
  integers = list(np.squeeze(integers))
  if 1 in integers:
    integers = integers[:integers.index(1)]
  return encoders["inputs"].decode(np.squeeze(integers))

#Create hparams and the model
model_name = "transformer"
hparams_set = "transformer_base"

hparams = trainer_lib.create_hparams(hparams_set, data_dir=data_dir, problem_name="translate_ende_wmt32k_rev") # <-------------

# NOTE: Only create the model once when restoring from a checkpoint; it's a
# Layer and so subsequent instantiations will have different variable scopes
# that will not match the checkpoint.
translate_model = registry.model(model_name)(hparams, Modes.EVAL)

# Copy the pretrained checkpoint locally
ckpt_name = "transformer_ende_test"
gs_ckpt = os.path.join(gs_ckpt_dir, ckpt_name)
!gsutil -q cp -R {gs_ckpt} {checkpoint_dir}
ckpt_path = tf.train.latest_checkpoint(os.path.join(checkpoint_dir, ckpt_name))
ckpt_path

# Restore and translate!
def translate(inputs):
  encoded_inputs = encode(inputs)
  with tfe.restore_variables_on_create(ckpt_path):
    model_output = translate_model.infer(encoded_inputs)["outputs"]
  return decode(model_output)

inputs = "Sie ist zurückgetreten."
outputs = translate(inputs)

print("Inputs: %s" % inputs)
print("Outputs: %s" % outputs)

The output is as follows: 输出如下:

  • Inputs: Sie ist zurückgetreten. 输入:Sie istzurückgetreten。
  • Outputs: Sie sind zurückgetreten. 输出:Sie sindzurückgetreten。

    The translation seems still to be from English to German instead of vice versa. 翻译似乎仍然是从英语到德语,而不是相反。

    What am I missing? 我想念什么?

  • The model you are loading form a checkpoint ( ckpt_name = "transformer_ende_test" and downloading from gs_ckpt_dir ) was trained only for English-to-German. 从检查点( ckpt_name = "transformer_ende_test"并从gs_ckpt_dir下载)加载的模型仅受过英语到德语的培训。 You would need to find a checkpoint of a model trained in the opposite direction or train one yourself. 您将需要找到以相反方向训练的模型的检查点,或者自己进行训练。 I am not aware of any publicly available German-to-English T2T model checkpoint. 我不知道任何公开可用的德语到英语T2T模型检查站。

    声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

     
    粤ICP备18138465号  © 2020-2024 STACKOOM.COM