1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
|
"""
T5-Base Model for Summarization, Sentiment Classification, and Translation
==========================================================================
**Author**: `Pendo Abbo <pabbo@fb.com>`__
"""
######################################################################
# Overview
# --------
#
# This tutorial demonstrates how to use a pre-trained T5 Model for summarization, sentiment classification, and
# translation tasks. We will demonstrate how to use the torchtext library to:
#
# 1. Build a text pre-processing pipeline for a T5 model
# 2. Instantiate a pre-trained T5 model with base configuration
# 3. Read in the CNNDM, IMDB, and Multi30k datasets and pre-process their texts in preparation for the model
# 4. Perform text summarization, sentiment classification, and translation
#
#
######################################################################
# Common imports
# --------------
import torch
import torch.nn.functional as F
DEVICE = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu")
#######################################################################
# Data Transformation
# -------------------
#
# The T5 model does not work with raw text. Instead, it requires the text to be transformed into numerical form
# in order to perform training and inference. The following transformations are required for the T5 model:
#
# 1. Tokenize text
# 2. Convert tokens into (integer) IDs
# 3. Truncate the sequences to a specified maximum length
# 4. Add end-of-sequence (EOS) and padding token IDs
#
# T5 uses a SentencePiece model for text tokenization. Below, we use a pre-trained SentencePiece model to build
# the text pre-processing pipeline using torchtext's T5Transform. Note that the transform supports both
# batched and non-batched text input (i.e. one can either pass a single sentence or a list of sentences), however
# the T5 model expects the input to be batched.
#
from torchtext.prototype.models import T5Transform
padding_idx = 0
eos_idx = 1
max_seq_len = 512
t5_sp_model_path = "https://download.pytorch.org/models/text/t5_tokenizer_base.model"
transform = T5Transform(
sp_model_path=t5_sp_model_path,
max_seq_len=max_seq_len,
eos_idx=eos_idx,
padding_idx=padding_idx,
)
#######################################################################
# Alternatively, we can also use the transform shipped with the pre-trained models that does all of the above out-of-the-box
#
# ::
#
# from torchtext.prototype.models import T5_BASE_GENERATION
# transform = T5_BASE_GENERATION.transform()
#
######################################################################
# Model Preparation
# -----------------
#
# torchtext provides SOTA pre-trained models that can be used directly for NLP tasks or fine-tuned on downstream tasks. Below
# we use the pre-trained T5 model with standard base configuration to perform text summarization, sentiment classification, and
# translation. For additional details on available pre-trained models, please refer to documentation at
# https://pytorch.org/text/main/models.html
#
#
from torchtext.prototype.models import T5_BASE_GENERATION
t5_base = T5_BASE_GENERATION
transform = t5_base.transform()
model = t5_base.get_model()
model.eval()
model.to(DEVICE)
#######################################################################
# Sequence Generator
# ------------------
#
# We can define a sequence generator to produce an output sequence based on the input sequence provided. This calls on the
# model's encoder and decoder, and iteratively expands the decoded sequences until the end-of-sequence token is generated
# for all sequences in the batch. The `generate` method shown below uses a beam search to generate the sequences. Larger
# beam sizes can result in better generation at the cost of computational complexity, and a beam size of 1 is equivalent to
# a greedy decoder.
#
from torch import Tensor
from torchtext.prototype.models import T5Model
def beam_search(
beam_size: int,
step: int,
bsz: int,
decoder_output: Tensor,
decoder_tokens: Tensor,
scores: Tensor,
incomplete_sentences: Tensor,
):
probs = F.log_softmax(decoder_output[:, -1], dim=-1)
top = torch.topk(probs, beam_size)
# N is number of sequences in decoder_tokens, L is length of sequences, B is beam_size
# decoder_tokens has shape (N,L) -> (N,B,L)
# top.indices has shape (N,B) - > (N,B,1)
# x has shape (N,B,L+1)
# note that when step == 1, N = batch_size, and when step > 1, N = batch_size * beam_size
x = torch.cat([decoder_tokens.unsqueeze(1).repeat(1, beam_size, 1), top.indices.unsqueeze(-1)], dim=-1)
# beams are first created for a given sequence
if step == 1:
# x has shape (batch_size, B, L+1) -> (batch_size * B, L+1)
# new_scores has shape (batch_size,B)
# incomplete_sentences has shape (batch_size * B) = (N)
new_decoder_tokens = x.view(-1, step + 1)
new_scores = top.values
new_incomplete_sentences = incomplete_sentences
# beams already exist, want to expand each beam into possible new tokens to add
# and for all expanded beams beloning to the same sequences, choose the top k
else:
# scores has shape (batch_size,B) -> (N,1) -> (N,B)
# top.values has shape (N,B)
# new_scores has shape (N,B) -> (batch_size, B^2)
new_scores = (scores.view(-1, 1).repeat(1, beam_size) + top.values).view(bsz, -1)
# v, i have shapes (batch_size, B)
v, i = torch.topk(new_scores, beam_size)
# x has shape (N,B,L+1) -> (batch_size, B, L+1)
# i has shape (batch_size, B) -> (batch_size, B, L+1)
# new_decoder_tokens has shape (batch_size, B, L+1) -> (N, L)
x = x.view(bsz, -1, step + 1)
new_decoder_tokens = x.gather(index=i.unsqueeze(-1).repeat(1, 1, step + 1), dim=1).view(-1, step + 1)
# need to update incomplete sentences in case one of the beams was kicked out
# y has shape (N) -> (N, 1) -> (N, B) -> (batch_size, B^2)
y = incomplete_sentences.unsqueeze(-1).repeat(1, beam_size).view(bsz, -1)
# now can use i to extract those beams that were selected
# new_incomplete_sentences has shape (batch_size, B^2) -> (batch_size, B) -> (N, 1) -> N
new_incomplete_sentences = y.gather(index=i, dim=1).view(bsz * beam_size, 1).squeeze(-1)
# new_scores has shape (batch_size, B)
new_scores = v
return new_decoder_tokens, new_scores, new_incomplete_sentences
def generate(encoder_tokens: Tensor, eos_idx: int, model: T5Model, beam_size: int) -> Tensor:
# pass tokens through encoder
bsz = encoder_tokens.size(0)
encoder_padding_mask = encoder_tokens.eq(model.padding_idx)
encoder_embeddings = model.dropout1(model.token_embeddings(encoder_tokens))
encoder_output = model.encoder(encoder_embeddings, tgt_key_padding_mask=encoder_padding_mask)[0]
encoder_output = model.norm1(encoder_output)
encoder_output = model.dropout2(encoder_output)
# initialize decoder input sequence; T5 uses padding index as starter index to decoder sequence
decoder_tokens = torch.ones((bsz, 1), dtype=torch.long) * model.padding_idx
scores = torch.zeros((bsz, beam_size))
# mask to keep track of sequences for which the decoder has not produced an end-of-sequence token yet
incomplete_sentences = torch.ones(bsz * beam_size, dtype=torch.long)
# iteratively generate output sequence until all sequences in the batch have generated the end-of-sequence token
for step in range(model.config.max_seq_len):
if step == 1:
# duplicate and order encoder output so that each beam is treated as its own independent sequence
new_order = torch.arange(bsz).view(-1, 1).repeat(1, beam_size).view(-1)
new_order = new_order.to(encoder_tokens.device).long()
encoder_output = encoder_output.index_select(0, new_order)
encoder_padding_mask = encoder_padding_mask.index_select(0, new_order)
# causal mask and padding mask for decoder sequence
tgt_len = decoder_tokens.shape[1]
decoder_mask = torch.triu(torch.ones((tgt_len, tgt_len), dtype=torch.float64), diagonal=1).bool()
decoder_padding_mask = decoder_tokens.eq(model.padding_idx)
# T5 implemention uses padding idx to start sequence. Want to ignore this when masking
decoder_padding_mask[:, 0] = False
# pass decoder sequence through decoder
decoder_embeddings = model.dropout3(model.token_embeddings(decoder_tokens))
decoder_output = model.decoder(
decoder_embeddings,
memory=encoder_output,
tgt_mask=decoder_mask,
tgt_key_padding_mask=decoder_padding_mask,
memory_key_padding_mask=encoder_padding_mask,
)[0]
decoder_output = model.norm2(decoder_output)
decoder_output = model.dropout4(decoder_output)
decoder_output = decoder_output * (model.config.embedding_dim ** -0.5)
decoder_output = model.lm_head(decoder_output)
decoder_tokens, scores, incomplete_sentences = beam_search(
beam_size, step + 1, bsz, decoder_output, decoder_tokens, scores, incomplete_sentences
)
# ignore newest tokens for sentences that are already complete
decoder_tokens[:, -1] *= incomplete_sentences
# update incomplete_sentences to remove those that were just ended
incomplete_sentences = incomplete_sentences - (decoder_tokens[:, -1] == eos_idx).long()
# early stop if all sentences have been ended
if (incomplete_sentences == 0).all():
break
# take most likely sequence
decoder_tokens = decoder_tokens.view(bsz, beam_size, -1)[:, 0, :]
return decoder_tokens
#######################################################################
# Datasets
# --------
# torchtext provides several standard NLP datasets. For a complete list, refer to the documentation
# at https://pytorch.org/text/stable/datasets.html. These datasets are built using composable torchdata
# datapipes and hence support standard flow-control and mapping/transformation using user defined
# functions and transforms.
#
# Below, we demonstrate how to pre-process the CNNDM dataset to include the prefix necessary for the
# model to indentify the task it is performing. The CNNDM dataset has a train, validation, and test
# split. Below we demo on the test split.
#
# The T5 model uses the prefix "summarize" for text summarization. For more information on task
# prefixes, please visit Appendix D of the T5 Paper at https://arxiv.org/pdf/1910.10683.pdf
#
# .. note::
# Using datapipes is still currently subject to a few caveats. If you wish
# to extend this example to include shuffling, multi-processing, or
# distributed learning, please see :ref:`this note <datapipes_warnings>`
# for further instructions.
from functools import partial
from torch.utils.data import DataLoader
from torchtext.datasets import CNNDM
cnndm_batch_size = 5
cnndm_datapipe = CNNDM(split="test")
task = "summarize"
def apply_prefix(task, x):
return f"{task}: " + x[0], x[1]
cnndm_datapipe = cnndm_datapipe.map(partial(apply_prefix, task))
cnndm_datapipe = cnndm_datapipe.batch(cnndm_batch_size)
cnndm_datapipe = cnndm_datapipe.rows2columnar(["article", "abstract"])
cnndm_dataloader = DataLoader(cnndm_datapipe, batch_size=None)
#######################################################################
# Alternately we can also use batched API (i.e apply the prefix on the whole batch)
#
# ::
#
# def batch_prefix(task, x):
# return {
# "article": [f'{task}: ' + y for y in x["article"]],
# "abstract": x["abstract"]
# }
#
# cnndm_batch_size = 5
# cnndm_datapipe = CNNDM(split="test")
# task = 'summarize'
#
# cnndm_datapipe = cnndm_datapipe.batch(cnndm_batch_size).rows2columnar(["article", "abstract"])
# cnndm_datapipe = cnndm_datapipe.map(partial(batch_prefix, task))
# cnndm_dataloader = DataLoader(cnndm_datapipe, batch_size=None)
#
#######################################################################
# We can also load the IMDB dataset, which will be used to demonstrate sentiment classification using the T5 model.
# This dataset has a train and test split. Below we demo on the test split.
#
# The T5 model was trained on the SST2 dataset (also available in torchtext) for sentiment classification using the
# prefix "sst2 sentence". Therefore, we will use this prefix to perform sentiment classification on the IMDB dataset.
#
from torchtext.datasets import IMDB
imdb_batch_size = 3
imdb_datapipe = IMDB(split="test")
task = "sst2 sentence"
labels = {"neg": "negative", "pos": "positive"}
def process_labels(labels, x):
return x[1], labels[x[0]]
imdb_datapipe = imdb_datapipe.map(partial(process_labels, labels))
imdb_datapipe = imdb_datapipe.map(partial(apply_prefix, task))
imdb_datapipe = imdb_datapipe.batch(imdb_batch_size)
imdb_datapipe = imdb_datapipe.rows2columnar(["text", "label"])
imdb_dataloader = DataLoader(imdb_datapipe, batch_size=None)
#######################################################################
# Finally, we can also load the Multi30k dataset to demonstrate English to German translation using the T5 model.
# This dataset has a train, validation, and test split. Below we demo on the test split.
#
# The T5 model uses the prefix "translate English to German" for this task.
from torchtext.datasets import Multi30k
multi_batch_size = 5
language_pair = ("en", "de")
multi_datapipe = Multi30k(split="test", language_pair=language_pair)
task = "translate English to German"
multi_datapipe = multi_datapipe.map(partial(apply_prefix, task))
multi_datapipe = multi_datapipe.batch(multi_batch_size)
multi_datapipe = multi_datapipe.rows2columnar(["english", "german"])
multi_dataloader = DataLoader(multi_datapipe, batch_size=None)
#######################################################################
# Generate Summaries
# ------------------
#
# We can put all of the components together to generate summaries on the first batch of articles in the CNNDM test set
# using a beam size of 3.
#
batch = next(iter(cnndm_dataloader))
input_text = batch["article"]
target = batch["abstract"]
beam_size = 3
model_input = transform(input_text)
model_output = generate(model=model, encoder_tokens=model_input, eos_idx=eos_idx, beam_size=beam_size)
output_text = transform.decode(model_output.tolist())
for i in range(cnndm_batch_size):
print(f"Example {i+1}:\n")
print(f"prediction: {output_text[i]}\n")
print(f"target: {target[i]}\n\n")
#######################################################################
# Summarization Output
# --------------------
#
# ::
#
# Example 1:
#
# prediction: the Palestinians become the 123rd member of the international criminal
# court . the accession was marked by a ceremony at the Hague, where the court is based .
# the ICC opened a preliminary examination into the situation in the occupied
# Palestinian territory .
#
# target: Membership gives the ICC jurisdiction over alleged crimes committed in
# Palestinian territories since last June . Israel and the United States opposed the
# move, which could open the door to war crimes investigations against Israelis .
#
#
# Example 2:
#
# prediction: a stray pooch has used up at least three of her own after being hit by a
# car and buried in a field . the dog managed to stagger to a nearby farm, dirt-covered
# and emaciated, where she was found . she suffered a dislocated jaw, leg injuries and a
# caved-in sinus cavity -- and still requires surgery to help her breathe .
#
# target: Theia, a bully breed mix, was apparently hit by a car, whacked with a hammer
# and buried in a field . "She's a true miracle dog and she deserves a good life," says
# Sara Mellado, who is looking for a home for Theia .
#
#
# Example 3:
#
# prediction: mohammad Javad Zarif arrived in Iran on a sunny friday morning . he has gone
# a long way to bring Iran in from the cold and allow it to rejoin the international
# community . but there are some facts about him that are less well-known .
#
# target: Mohammad Javad Zarif has spent more time with John Kerry than any other
# foreign minister . He once participated in a takeover of the Iranian Consulate in San
# Francisco . The Iranian foreign minister tweets in English .
#
#
# Example 4:
#
# prediction: five americans were monitored for three weeks after being exposed to Ebola in
# west africa . one of the five had a heart-related issue and has been discharged but hasn't
# left the area . they are clinicians for Partners in Health, a Boston-based aid group .
#
# target: 17 Americans were exposed to the Ebola virus while in Sierra Leone in March .
# Another person was diagnosed with the disease and taken to hospital in Maryland .
# National Institutes of Health says the patient is in fair condition after weeks of
# treatment .
#
#
# Example 5:
#
# prediction: the student was identified during an investigation by campus police and
# the office of student affairs . he admitted to placing the noose on the tree early
# Wednesday morning . the incident is one of several recent racist events to affect
# college students .
#
# target: Student is no longer on Duke University campus and will face disciplinary
# review . School officials identified student during investigation and the person
# admitted to hanging the noose, Duke says . The noose, made of rope, was discovered on
# campus about 2 a.m.
#
#######################################################################
# Generate Sentiment Classifications
# ----------------------------------
#
# Similarly, we can use the model to generate sentiment classifications on the first batch of reviews from the IMDB test set
# using a beam size of 1.
#
batch = next(iter(imdb_dataloader))
input_text = batch["text"]
target = batch["label"]
beam_size = 1
model_input = transform(input_text)
model_output = generate(model=model, encoder_tokens=model_input, eos_idx=eos_idx, beam_size=beam_size)
output_text = transform.decode(model_output.tolist())
for i in range(imdb_batch_size):
print(f"Example {i+1}:\n")
print(f"input_text: {input_text[i]}\n")
print(f"prediction: {output_text[i]}\n")
print(f"target: {target[i]}\n\n")
#######################################################################
# Sentiment Output
# ----------------
#
# ::
#
# Example 1:
#
# input_text: sst2 sentence: I love sci-fi and am willing to put up with a lot. Sci-fi
# movies/TV are usually underfunded, under-appreciated and misunderstood. I tried to like
# this, I really did, but it is to good TV sci-fi as Babylon 5 is to Star Trek (the original).
# Silly prosthetics, cheap cardboard sets, stilted dialogues, CG that doesn't match the
# background, and painfully one-dimensional characters cannot be overcome with a 'sci-fi'
# setting. (I'm sure there are those of you out there who think Babylon 5 is good sci-fi TV.
# It's not. It's clichéd and uninspiring.) While US viewers might like emotion and character
# development, sci-fi is a genre that does not take itself seriously (cf. Star Trek). It may
# treat important issues, yet not as a serious philosophy. It's really difficult to care about
# the characters here as they are not simply foolish, just missing a spark of life. Their
# actions and reactions are wooden and predictable, often painful to watch. The makers of Earth
# KNOW it's rubbish as they have to always say "Gene Roddenberry's Earth..." otherwise people
# would not continue watching. Roddenberry's ashes must be turning in their orbit as this dull,
# cheap, poorly edited (watching it without advert breaks really brings this home) trudging
# Trabant of a show lumbers into space. Spoiler. So, kill off a main character. And then bring
# him back as another actor. Jeeez. Dallas all over again.
#
# prediction: negative
#
# target: negative
#
#
# Example 2:
#
# input_text: sst2 sentence: Worth the entertainment value of a rental, especially if you like
# action movies. This one features the usual car chases, fights with the great Van Damme kick
# style, shooting battles with the 40 shell load shotgun, and even terrorist style bombs. All
# of this is entertaining and competently handled but there is nothing that really blows you
# away if you've seen your share before.<br /><br />The plot is made interesting by the
# inclusion of a rabbit, which is clever but hardly profound. Many of the characters are
# heavily stereotyped -- the angry veterans, the terrified illegal aliens, the crooked cops,
# the indifferent feds, the bitchy tough lady station head, the crooked politician, the fat
# federale who looks like he was typecast as the Mexican in a Hollywood movie from the 1940s.
# All passably acted but again nothing special.<br /><br />I thought the main villains were
# pretty well done and fairly well acted. By the end of the movie you certainly knew who the
# good guys were and weren't. There was an emotional lift as the really bad ones got their just
# deserts. Very simplistic, but then you weren't expecting Hamlet, right? The only thing I found
# really annoying was the constant cuts to VDs daughter during the last fight scene.<br /><br />
# Not bad. Not good. Passable 4.
#
# prediction: negative
#
# target: negative
#
#
# Example 3:
#
# input_text: sst2 sentence: its a totally average film with a few semi-alright action sequences
# that make the plot seem a little better and remind the viewer of the classic van dam films.
# parts of the plot don't make sense and seem to be added in to use up time. the end plot is that
# of a very basic type that doesn't leave the viewer guessing and any twists are obvious from the
# beginning. the end scene with the flask backs don't make sense as they are added in and seem to
# have little relevance to the history of van dam's character. not really worth watching again,
# bit disappointed in the end production, even though it is apparent it was shot on a low budget
# certain shots and sections in the film are of poor directed quality.
#
# prediction: negative
#
# target: negative
#
#######################################################################
# Generate Translations
# ---------------------
#
# Finally, we can also use the model to generate English to German translations on the first batch of examples from the Multi30k
# test set using a beam size of 4.
#
batch = next(iter(multi_dataloader))
input_text = batch["english"]
target = batch["german"]
beam_size = 4
model_input = transform(input_text)
model_output = generate(model=model, encoder_tokens=model_input, eos_idx=eos_idx, beam_size=beam_size)
output_text = transform.decode(model_output.tolist())
for i in range(multi_batch_size):
print(f"Example {i+1}:\n")
print(f"input_text: {input_text[i]}\n")
print(f"prediction: {output_text[i]}\n")
print(f"target: {target[i]}\n\n")
#######################################################################
# Translation Output
# ------------------
#
# ::
#
# Example 1:
#
# input_text: translate English to German: A man in an orange hat starring at something.
#
# prediction: Ein Mann in einem orangen Hut, der an etwas schaut.
#
# target: Ein Mann mit einem orangefarbenen Hut, der etwas anstarrt.
#
#
# Example 2:
#
# input_text: translate English to German: A Boston Terrier is running on lush green grass in front of a white fence.
#
# prediction: Ein Boston Terrier läuft auf üppigem grünem Gras vor einem weißen Zaun.
#
# target: Ein Boston Terrier läuft über saftig-grünes Gras vor einem weißen Zaun.
#
#
# Example 3:
#
# input_text: translate English to German: A girl in karate uniform breaking a stick with a front kick.
#
# prediction: Ein Mädchen in Karate-Uniform bricht einen Stöck mit einem Frontkick.
#
# target: Ein Mädchen in einem Karateanzug bricht ein Brett mit einem Tritt.
#
#
# Example 4:
#
# input_text: translate English to German: Five people wearing winter jackets and helmets stand in the snow, with snowmobiles in the background.
#
# prediction: Fünf Menschen mit Winterjacken und Helmen stehen im Schnee, mit Schneemobilen im Hintergrund.
#
# target: Fünf Leute in Winterjacken und mit Helmen stehen im Schnee mit Schneemobilen im Hintergrund.
#
#
# Example 5:
#
# input_text: translate English to German: People are fixing the roof of a house.
#
# prediction: Die Leute fixieren das Dach eines Hauses.
#
# target: Leute Reparieren das Dach eines Hauses.
#
|