Deep Learning Approaches to Text Production 1st Edition Shashi Narayan instant download
Deep Learning Approaches to Text Production 1st Edition Shashi Narayan instant download
https://textbookfull.com/product/deep-learning-approaches-to-
text-production-1st-edition-shashi-narayan/
https://textbookfull.com/product/programming-machine-learning-
from-coding-to-deep-learning-1st-edition-paolo-perrotta/
https://textbookfull.com/product/learning-tensorflow-a-guide-to-
building-deep-learning-systems-1st-edition-tom-hope/
https://textbookfull.com/product/deep-learning-for-the-life-
sciences-applying-deep-learning-to-genomics-microscopy-drug-
discovery-and-more-1st-edition-bharath-ramsundar/
Introduction to Deep Learning Using R: A Step-by-Step
Guide to Learning and Implementing Deep Learning Models
Using R Taweh Beysolow Ii
https://textbookfull.com/product/introduction-to-deep-learning-
using-r-a-step-by-step-guide-to-learning-and-implementing-deep-
learning-models-using-r-taweh-beysolow-ii/
https://textbookfull.com/product/programming-pytorch-for-deep-
learning-creating-and-deploying-deep-learning-applications-1st-
edition-ian-pointer/
https://textbookfull.com/product/deep-learning-pipeline-building-
a-deep-learning-model-with-tensorflow-1st-edition-hisham-el-amir/
https://textbookfull.com/product/from-deep-learning-to-rational-
machines-1st-edition-cameron-j-buckner/
https://textbookfull.com/product/approaches-to-enhance-
industrial-production-of-fungal-cellulases-manish-srivastava/
Series ISSN 1947-4040
NARAYAN • GARDENT
Series Editor: Graeme Hirst, University of Toronto
ABOUT SYNTHESIS
This volume is a printed version of a work that appears in the Synthesis
Digital Library of Engineering and Computer Science. Synthesis lectures
provide concise original presentations of important research and
development topics, published quickly in digital and print formats. For
store.morganclaypool.com
Deep Learning Approaches
to Text Production
Synthesis Lectures on Human
Language Technologies
Editor
Grame Hirst, University of Toronto
Synthesis Lectures on Human Language Technologies is edited by Graeme Hirst of the University
of Toronto. The series consists of 50- to 150-page monographs on topics relating to natural
language processing, computational linguistics, information retrieval, and spoken language
understanding. Emphasis is on important new techniques, on new applications, and on topics that
combine two or more HLT subfields.
Linguistic Fundamentals for Natural Language Processing II: 100 Essentials from
Semantics and Pragmatics
Emily M. Bender and Alex Lascarides
2019
Argumentation Mining
Manfred Stede and Jodi Schneider
2018
Bitext Alignment
Jörg Tiedemann
2011
Dependency Parsing
Sandra Kübler, Ryan McDonald, and Joakim Nivre
2009
All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in
any form or by any means—electronic, mechanical, photocopy, recording, or any other except for brief quotations
in printed reviews, without the prior permission of the publisher.
DOI 10.2200/S00979ED1V01Y201912HLT044
Lecture #44
Series Editor: Grame Hirst, University of Toronto
Series ISSN
Print 1947-4040 Electronic 1947-4059
Deep Learning Approaches
to Text Production
Shashi Narayan
University of Edinburgh
Claire Gardent
CNRS/LORIA, Nancy
M
&C Morgan & cLaypool publishers
/stu
ABSTRACT
Text production has many applications. It is used, for instance, to generate dialogue turns from
dialogue moves, verbalise the content of knowledge bases, or generate English sentences from
rich linguistic representations, such as dependency trees or abstract meaning representations.
Text production is also at work in text-to-text transformations such as sentence compression,
sentence fusion, paraphrasing, sentence (or text) simplification, and text summarisation. This
book offers an overview of the fundamentals of neural models for text production. In particu-
lar, we elaborate on three main aspects of neural approaches to text production: how sequential
decoders learn to generate adequate text, how encoders learn to produce better input repre-
sentations, and how neural generators account for task-specific objectives. Indeed, each text-
production task raises a slightly different challenge (e.g, how to take the dialogue context into
account when producing a dialogue turn, how to detect and merge relevant information when
summarising a text, or how to produce a well-formed text that correctly captures the information
contained in some input data in the case of data-to-text generation). We outline the constraints
specific to some of these tasks and examine how existing neural models account for them. More
generally, this book considers text-to-text, meaning-to-text, and data-to-text transformations.
It aims to provide the audience with a basic knowledge of neural approaches to text production
and a roadmap to get them started with the related work. The book is mainly targeted at re-
searchers, graduate students, and industrials interested in text production from different forms
of inputs.
KEYWORDS
text production, text generation, deep learning, neural networks, meaning-to-text,
data-to-text, text-to-text, recurrent neural networks, sequence-to-sequence models,
attention, copy, coverage, AMR generation, RDF generation, verbalise, simplifica-
tion, compression, paraphrasing, dialogue generation, summarisation, content se-
lection, adequacy, input understanding, sentence representation, document repre-
sentation, communication goals, deep generators, reinforcement learning, evalua-
tion, grammatical, fluent, meaning-preserving, BLEU, ROUGE, relevant, coher-
ent
xi
To my family.
– Shashi
Contents
List of Figures . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xvii
Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxiii
1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.1 What is Text Production? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.1.1 Generating Text from Meaning Representations . . . . . . . . . . . . . . . . . 1
1.1.2 Generating Text from Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.1.3 Generating Text from Text . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.2 Roadmap . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
1.3 What’s Not Covered? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
1.4 Our Notations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
PART I Basics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
2 Pre-Neural Approaches . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
2.1 Data-to-Text Generation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
2.2 Meaning Representations-to-Text Generation . . . . . . . . . . . . . . . . . . . . . . . . . 15
2.2.1 Grammar-Centric Approaches . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
2.2.2 Statistical MR-to-Text Generation . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
2.3 Text-to-Text Generation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
2.3.1 Sentence Simplification and Sentence Compression . . . . . . . . . . . . . . 18
2.3.2 Document Summarisation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
2.4 Summary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
8 Conclusion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 131
8.1 Summarising . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 131
8.2 Overview of Covered Neural Generators . . . . . . . . . . . . . . . . . . . . . . . . . . . . 131
8.3 Two Key Issues with Neural NLG . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 132
8.4 Challenges . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 134
8.5 Recent Trends in Neural NLG . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 135
xvi
Bibliography . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 139
List of Figures
1.1 Input contents and communicative goals for text production . . . . . . . . . . . . . . . 2
1.2 Shallow dependency tree from generation challenge surface realisation task . . . 3
1.3 Example input from the SemEval AMR-to-Text Generation Task . . . . . . . . . . 4
1.4 E2E dialogue move and text . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.5 Data-to-Text example input and output pair . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
List of Tables
6.1 An abridged CNN article and its story highlights (Continues.) . . . . . . . . . . . . 95
6.1 (Continued.) An abridged CNN article and its story highlights . . . . . . . . . . . . 96
Preface
Neural methods have triggered a paradigm shift in text production by supporting two key fea-
tures. First, recurrent neural networks allow for the learning of powerful language models which
can be conditioned on arbitrarily long input and are not limited by the Markov assumption. In
practice, this proved to allow for the generation of highly fluent, natural sounding text. Second,
the encoder-decoder architecture provides a natural and unifying framework for all generation
tasks independent of the input type (data, text, or meaning representation). As shown by the
dramatic increase in the number of conference and journal submissions on that topic, these two
features have led to a veritable explosion of the field.
In this book, we introduce the basics of early neural text-production models and contrast
them with pre-neural approaches. We begin by briefly reviewing the main characteristics of
pre-neural text-production models, emphasising the stark contrast with early neural approaches
which mostly modeled text-production tasks independent of the input type and of the com-
municative goal. We then introduce the encoder-decoder framework where, first, a continuous
representation is learned for the input and, second, an output text is incrementally generated
conditioned on the input representation and on the representation of the previously generated
words. We discuss the attention, copy, and coverage mechanisms that were introduced to im-
prove the quality of generated texts. We show how text-production can benefit from better input
representation when the input is a long document or a graph. Finally, we motivate the need for
neural models that are sensitive to the current communication goal. We describe different vari-
ants of neural models with task-specific objectives and architectures which directly optimise
task-specific communication goals. We discuss generation from text, data, and meaning repre-
sentations, bringing various text-production scenarios under one roof to study them all together.
Throughout the book we provide an extensive list of references to support further reading.
As we were writing this book, the field had already moved on to new architectures and
models (Transformer, pre-training, and fine-tuning have now become the dominant approach),
and we discussed these briefly in the conclusion. We hope that this book will provide a useful
introduction to the workings of neural text production and that it will help newcomers from
both academia and industry quickly get acquainted with that rapidly expanding field.
We would like to thank several people who provided data or images, and authorization to
use them in this book. In particular, we would like to thank Abigail See for the pointer-generator
model, Asli Celikyilmaz for the diagrams of deep communicating paragraph encoders, Bayu Dis-
tiawan Trisedya for graph-triple encoders, Bernd Bohnet for an example from the 2018 surface
realisation challenge, Diego Marcheggiani for graph convolutional network (GCN) diagrams, Ji-
wei Tan for hierarchical document encoders and graph-based attention mechanism using them,
xxiv PREFACE
Jonathan May for an abstract meaning representation (AMR) graph, Laura Perez-Beltrachini
for an extended RotoWire example, Linfeng Song for graph-state long short-term memories
(LSTMs) for text production from AMR graphs, Marc’Aurelio Ranzato for exposure bias and
curriculum learning algorithm diagrams, Qingyu Zhou for selective encoding figures, Sam Wise-
man for a corrected RotoWire example, Sebastian Gehrmann for the bottom-up summariza-
tion diagram, Tsung-Hsien Wen for an alternative coverage mechanism plot, Xingxing Zhang
for reinforcement learning for sentence simplification, and Yannis Konstas for AMR-to-text and
data-to-text examples. Huge thanks to Emiel Krahmer, Graeme Hirst, and our anonymous re-
viewer for reviewing our book and providing us with detailed and constructive feedback. We
have attempted to address all the issues they raised. All the remaining typos and inadequacies
are entirely our responsibility. Finally, we would like to thank Morgan & Claypool Publishers
for working with us in producing this manuscript. A very special thanks goes to Michael Morgan
and Christine Kiilerich for always encouraging us and keeping us on track.
CHAPTER 1
Introduction
In this chapter, we outline the differences between text production and text analysis, we introduce
the main text-production tasks this book is concerned with (i.e., text production from data, from
text, and from meaning representations) and we summarise the content of each chapter. We also
indicate what is not covered and introduce some notational conventions.
Communication Goal
Meaning Representations
- AMRs, Dialogue Moves, Abstract Dependency Trees …
Data
Input - Knowledge- and Data-Bases, Numerical, Graphical Data …
Text
- Sentence, Text, Multiple Texts, Dialogue Turn …
Figure 1.1: Input contents and communicative goals for text production.
(known as the surface realisation module) being responsible for generating text from some ab-
stract linguistic representation derived by the system. To improve reusability, surface realisation
challenges have recently been organised in an effort to identify input meaning representations
that could serve as a common standard for NLG systems, thereby fueling research on that topic.
Second, meaning representations can be viewed as an interface between NLU and NLG.
Consider translation, for instance. Instead of learning machine translation models, which di-
rectly translate surface strings into surface strings, an interesting scientific challenge would be to
learn a model that does something more akin to what humans seem to do, i.e., first, understand
the source text, and second, generate the target text from the conceptual representation issued
from that understanding (indeed a recent paper by Konstas et al. [2017] mentions this as future
work). A similar two-step process (first, deriving a meaning representation from the input text,
and second, generating a text from that meaning representation) also seems natural for such
tasks as text simplification or summarisation.
Although there are still relatively few approaches adopting a two-step interpret-and-
generate process or reusing existing surface realisation algorithms, there is already a large trend
of research in text production which focuses on generating text from meaning representations
produced by a semantic parser [May and Priyadarshi, 2017, Mille et al., 2018] or a dialogue
manager [Novikova et al., 2017b]. In the case of semantic parsing, the meaning representations
capture the semantics of the input text and can be exploited as mentioned above to model a
1.1. WHAT IS TEXT PRODUCTION? 3
may
SBJ VC P
report be .
Figure 1.2: Input shallow dependency tree from the generation challenge surface realisation
task for the sentence “The most troublesome report may be the August merchandise trade deficit due
out tomorrow.”
two-step process in applications such as simplification [Narayan and Gardent, 2014], summari-
sation [Liu et al., 2015] or translation [Song et al., 2019b]. In the case of dialogue, the input
meaning representation (a dialogue move) is output by the dialogue manager in response to the
user input and provides the input to the dialogue generator, the module in charge of generating
the system response.
While a wide range of meaning representations and syntactic structures have been pro-
posed for natural language (e.g., first-order logic, description logic, hybrid logic, derivation
rather than derived syntactic trees), three main types of meaning representations have recently
gained traction as input to text generation: meaning representations derived from syntactic de-
pendency trees (cf. Figure 1.2), meaning representations derived through semantic parsing (cf.
Figure 1.3), and meaning representations used as input to the generation of a dialogue engine
response (cf. Figure 1.4). All three inputs gave rise to shared tasks and international challenges.
The Surface Realisation shared task [Belz et al., 2012, Mille et al., 2018] focuses on gen-
erating sentences from linguistic representations derived from syntactic dependency trees and
includes a deep and a shallow track. For the shallow track, the input is an unordered, lemma-
tised syntactic dependency tree and the main focus is on linearisation (deriving the correct word
order from the input tree) and morphological inflection (deriving the inflection from a lemma
and a set of morphosyntactic features). For the deep track, on the other hand, the input is a de-
Another Random Scribd Document
with Unrelated Content
The troops are said to have formed a huge semi-circle with the
G.P.O. as the centre, and, starting from the river, are driving the
rebels back street by street, till eventually they will be in a small
enclosure, when they will bombard it to pieces.
The G.P.O. has such valuable records, etc., and the contents of the
safes are so precious, that they will not raze it to the ground if they
can help it; but it has so much subterranean space, that would
afford cover to thousands of Sinn Feiners, that we hear they are
going to fire some "gas" shells into it and then rush it!
Up to yesterday afternoon they had got to Abbey Street on the
right, and no doubt were closing in equally on other sides. The shells
had started several fires; nearly all the shops on the quay on the
side of the Custom House were burning yesterday afternoon, and
later in the evening many others broke out.
I cannot give you any idea of what it was like when I went to bed.
I sent for Mrs. B., the manager's wife, such a splendid little woman,
and together we watched it from my window, which is high up and
looked in the right direction.
It was the most awe-inspiring sight I have ever seen. It seemed
as if the whole city was on fire, the glow extending right across the
heavens, and the red glare hundreds of feet high, while above the
roar of the fires the whole air seemed vibrating with the noise of the
great guns and machine-guns. It was an inferno! We remained spell-
bound, and I can't tell you how I longed for you to see it. We had
only just come down from the window—we had been standing on
the window ledge leaning out—when H. came and told us no one
was to look out of the windows as there was cross-firing from the
United Service Club and another building, and Mr. O'B., who was
watching the fires from his window, had a bullet a few inches from
his head!!
About 2 a.m. I woke to find the room illuminated in spite of dark
blinds and curtains, and I rushed to the window and saw an
enormous fire; it seemed to be in the direction of the Four Courts,
which is in the hands of the Sinn Feiners, and we hear this morning
that a portion of the buildings was burnt last night.[A]
[A] This was incorrect; it was the Linen Hall barracks that were
burnt.
5 p.m.
Colonel C. has just come in, having been in the thick of it for forty-
eight hours. He tells us the Post Office has been set on fire by the
Sinn Feiners, who have left it. If this is true, and it probably is, I fear
we have lost all our valuable possessions, including my diamond
pendant, which was in my jewel-case in H.'s safe.
To-day about lunch-time a horrid machine-gun suddenly gave
voice very near us. We thought it was in this street, but it may have
been in Kildare Street; also the sniper reappeared on the roofs, and
this afternoon was opposite my bedroom window judging from the
sound. I pulled down my blinds. A man might hide for weeks on the
roofs of these houses among the chimney stacks and never be found
as long as he had access to some house for food. When we were
working in my room this afternoon he fired some shots that could
not have been more than twenty yards away.
The serious problem of food is looming rather near, as nothing has
come into the city since Saturday. Boland's bakery, an enormous
building, is in the hands of the rebels, who have barricaded all the
windows with sacks of flour, and it is said it will have to be blown up.
There is not a chance of getting them out in any other way. The
rebels also have Jacob's biscuit factory, where there are still huge
stores of flour. Every prominent building and every strategic position
was taken before the authorities at the Castle woke to the fact that
there was a rebellion!
I was almost forgetting to tell you how splendidly one of H.'s men
behaved when the G.P.O. was taken. When the rebels took
possession they demanded the keys from the man who had them in
charge. He quietly handed over the keys, having first abstracted the
keys of H.'s room!
Imagine such self-possession at such a terrible moment.
A young man has come to stay in the hotel who saw the taking of
the G.P.O. He was staying at the hotel exactly opposite the building
and went into the G.P.O. to get some stamps. As he was leaving the
office a detachment of about fifteen Irish Volunteers marched up
and formed up in front of the great entrance. He looked at them
with some curiosity, supposing they were going to hold a parade;
two more detachments arrived, and immediately the word of
command was given, and they rushed in through the door. Shots
were fired inside the building, and, as the young man said, he
"hooked it" back to the hotel, which was one of those burnt a few
days later. The whole thing occupied only a few moments, as, being
Bank Holiday, there was only a small staff in the building.
6.30 p.m. A party of soldiers and a young officer have just
arrived to search the roof for the sniper. They say he is on the roof
of the annexe, which is connected with the main building by
covered-in bridges. They are now on the roof and shots are being
fired, so I expect they have spotted him.
When N. was out last night another ambulance had a bad
experience. They had fetched three wounded Sinn Feiners out of a
house, and were taking them to hospital, when they came under
heavy fire. The driver was killed, so the man beside him took the
wheel and was promptly wounded in both legs. The car then ran
away and wrecked itself on a lamp post. Another ambulance had to
run the gauntlet and go to the rescue! On the whole as far as
possible the rebels have respected the Red Cross, but not the white
flag. In house-to-house fighting there can be no connected action,
and yesterday when a house was being stormed the rebels hung out
a white flag, and when the troops advanced to take them prisoners
they were shot down from a house a few doors higher up the street,
so now no more white flag signals are to be recognised. If they want
to surrender they must come out and take their own risks.
We asked N. if he knew what had happened to the ambulance
that had two men missing yesterday, and he told us they were in the
act of entering a Sinn Fein house to bring out wounded with two
other men when the ambulance came under such heavy fire that, as
it contained one or two other wounded men, it had to beat a retreat
and moved off. Two of the volunteer helpers ran after it and
succeeded in reaching it and climbed in, but the other two took
refuge in the area, and N. did not know how or when they were
rescued. This is an instance of the extreme danger that attends the
ambulance work. The marvel is that the casualties are so few.
Guinness's Brewery have made three splendid armoured cars by
putting great long boilers six feet in diameter on to their large motor
lorries. Holes are bored down the sides to let in air, and they are
painted grey. The driver sits inside too. They each carry twenty-two
men or a ton of food in absolute security. N. saw them at the Castle
being packed with men; nineteen got in packed like herrings, and
three remained outside. Up came the sergeant: "Now then,
gentlemen, move up, move up: the car held twenty-two yesterday; it
must hold twenty-two to-day"; and in the unfortunate three were
stuffed. It must have been suffocating, but they were taken to their
positions in absolute safety.
Saturday, 29th, 10 a.m.
Last night was an agitating one. The sniper was very active, and
after dinner several shots struck the annexe, one or two coming
through the windows, and one broke the glass roof of the bridge. Mr.
B., who never loses his head, decided to get all the people out of the
annexe, with staff (about forty people); and all we in the main
building, whose rooms look out on the back, were forbidden to have
lights in our rooms at all. There was such a strong feeling of
uneasiness throughout the hotel, and always the danger of its being
set on fire, that about 10 p.m. H. said we must be prepared at any
moment to leave the hotel if necessary. So we went up to our room
and in pitch darkness groped about and collected a few things (F.'s
miniature and the presentation portrait of him, my despatch case
with his letters, my fur coat, hat and boots), and we took them
down to the sitting-room, which H. uses as an office, on the first
floor. All the people in the hotel were collected in the lounge, which
is very large and faces the street, and the whole of the back was in
complete darkness. The firing quieted down, and about 11.30 we
crept up to our room and lay down in our clothes. When dawn broke
I got up and undressed and had two hours' sleep. All the rest of the
guests spent the night in the lounge.
This morning we hear an officer has been to say that the shots
fired into the hotel last night were fired by the military. People were
constantly pulling up their blinds for a moment with the lights on to
look at the city on fire, and the military have orders to fire on
anything that resembles signalling without asking questions.
Reliable news has come in this morning that nothing remains of
the G.P.O. but the four main walls and the great portico. It is
absolutely burnt out. The fires last night were terrible, but we dared
not look out. Eason's Library and all the shops and buildings
between O'Connell Bridge and the G.P.O. on both sides of Sackville
Street are gone.
It is difficult to think of the position without intense bitterness,
though God knows it is the last thing one wishes for at such a time.
In pandering to Sir E. Carson's fanaticism and allowing him to raise a
body of 100,000 armed men for the sole purpose of rebellion and
provisional government the Government tied their own hands and
rendered it extremely difficult to stop the arming of another body of
men, known to be disloyal, but whose avowed reason was the
internal defence of Ireland! In Ulster the wind was sown, and, my
God, we have reaped the whirlwind!
We hear that many of our wounded are being sent to Belfast, as
the hospitals here are crowded, and the food problem must soon
become acute. Mr. O'B. told me his ambulance picked up four
wounded, three men and a woman, and took them to the nearest
hospital. The woman was dying, so they stopped at a church and
picked up a priest; arrived at the hospital the authorities said they
could not possibly take them in as they had not enough food for
those they had already taken, but when they saw the condition of
the woman they took her in to die, and the others had to be taken
elsewhere.
If the main walls of the G.P.O. remain standing it may be we shall
find the safe in H.'s room still intact. It was built into the wall, and
my jewel-case was in it, but all our silver, old engravings, and other
valuables were stored in the great mahogany cupboards when we
gave up our house in the autumn, as being the safest place in
Dublin.
4 p.m.
Sir M. N. has just rung up to say the rebels have surrendered
unconditionally. We have no details, and the firing continues in
various parts of the town. But if the leaders have surrendered it can
only be a question of a few hours before peace is restored, and we
can go forth and look on the wreck and desolation of this great city.
So ends, we hope, this appalling chapter in the history of Ireland
—days of horror and slaughter comparable only to the Indian Mutiny.
This seems a suitable place, dear G., to end this letter, and I hope to
start a happier one to-morrow.
Yours,
L. N.
Third Letter
Sunday, April 30th, 10 a.m.
Dearest G.,—When I closed my letter last night with the news that
the rebel leaders had surrendered I hoped to start this new letter in
a more cheerful strain; but while we were dining last night H. was
rung up from the Castle to hear that the whole of Sackville Street
north of the G.P.O. right up to the Rotunda was on fire and blazing
so furiously that the fire brigade were powerless; nothing could go
near such an inferno. There was nothing to be done but let the fire
exhaust itself.
If this was true, it involved the loss of the Post Office Accountant's
Office opposite the G.P.O., the Sackville Street Club, Gresham and
Imperial Hotels, and other important buildings, and would have
increased H.'s difficulties enormously, as it would have been
necessary to build up the Post Office organisation again, with no
records, registers, accounts, or documents of any kind—at best a
stupendous task. However, fortunately this morning we hear the
reports were exaggerated. The Imperial Hotel, Clery's great shop,
and one or two others were burnt, but the upper part of the street
escaped, and the Accountant's Office and the Sackville Street Club
were not touched.
This morning Mr. C, who has been H.'s great support all through
this trying time (his second in command being away ill), and several
other members of the staff are coming here, and with H. they are
going down to see what remains of the G.P.O. It is being guarded
from looters, as, from the enormous number of telegraph
instruments destroyed, there must be a large quantity of copper and
other metal,—a very valuable asset,—and also several thousand
pounds in cash for payment of staff and soldiers' dependants,
besides heaps of other valuable property.
Here I must tell you how absolutely heroic the telephone staff
have been at the Exchange. It is in a building a considerable
distance from the G.P.O., and the Sinn Feiners have made great
efforts to capture it. The girls have been surrounded by firing; shots
have several times come into the switch-room, where the men took
down the boards from the back of the switch-boards and arranged
them as shelters over the girls' heads to protect them from bullets
and broken glass. Eight snipers have been shot on buildings
commanding the Exchange, and one of the guard was killed
yesterday; and these twenty girls have never failed. They have been
on duty since Tuesday, sleeping when possible in a cellar and with
indifferent food, and have cheerfully and devotedly stuck to their
post, doing the work of forty. Only those on duty on the outbreak of
the rebellion could remain; those in their homes could never get
back, so with the aid of the men who take the night duty these girls
have kept the whole service going. All telegrams have had to be sent
by 'phone as far as the railway termini, and they have simply saved
the situation. It has been magnificent!
The shooting is by no means over, as many of the Sinn Fein
strongholds refuse to surrender. Jacob's biscuit factory is very
strongly held, and when the rebels were called on to surrender they
refused unless they were allowed to march out carrying their arms!
It is said that when Jacob was told that the military might have to
blow up the factory he replied: "They may blow it to blazes for all I
care; I shall never make another biscuit in Ireland." I don't know if
this is true, but it very well may be, for he has been one of the
model employers in Dublin, and almost gave up the factory at the
time of the Larkin strike, and only continued it for the sake of his
people; and so it will be with the few great industries in the city.
Dublin is ruined.
Yesterday I made a joyful discovery. When we came back from
Italy in March, H. brought back from the office my large despatch-
case in which I keep all F.'s letters. I did not remember what else
was in it, so I investigated and found my necklet with jewelled cross
and the pink topaz set (both of these being in large cases would not
go in the jewel-case), also the large old paste buckle; so I am not
absolutely destitute of jewellery. But, best of all, there were the
three little handkerchiefs F. sent me from Armentières with my initial
worked on them; for these I was grieving more than for anything,
and when I found them the relief was so great I sat with them in my
hand and cried.
This week has been a wonderful week for N. Never before has a
boy of just seventeen had such an experience. Yesterday morning he
was at the Automobile Club filling cans of petrol from casks for the
Red Cross ambulance. He came in to lunch reeking of petrol. In the
afternoon he went round with the Lord Mayor in an ambulance
collecting food for forty starving refugees from the burnt-out district
housed in the Mansion House, and after tea went out for wounded
and brought in an old man of seventy-eight shot through the body.
He was quite cheery over it, and asked N. if he thought he would
recover. "Good Lord! yes; why not?" said N., and bucked the old man
up!
Some of the staff who came here this morning had seen a copy of
the Daily Mail yesterday, which devoted about six lines to the
condition of things in Ireland and spoke of a Sinn Fein riot in which
four soldiers and about six rebels had been killed. If that is all the
English people are being told of a rebellion which 30,000 troops and
many batteries of artillery are engaged in putting down, my letter
will be rather a surprise to you; and as the news must come out, the
English people will hardly be pleased at being kept in the dark. Such
a rebellion cannot be suppressed like a Zeppelin raid. During the first
three days our casualties were nearly 1,000; now we hear they are
close on 2,000.[C]
[C] This was exaggerated, our total casualties being about
1,380.
Here and there one of these squares was cut out and acted as an
air-hole, but they all looked exactly alike, so a sniper on a roof or
from a window aiming at one of these squares probably found his
bullet struck iron and bounded off to the accompaniment of derisive
jeers from the "Tommies" inside.
Armoured Car.
From the hotel the car proceeded to the Bank of Ireland, and took
over £10,000 in silver, and started on its round to all the post
offices, delivering the money in perfect safety. I will try and send you
a photograph of one of these most ingenious conveyances.
After it had started on its round I went with H. to see the
temporary sorting offices. H. had secured an enormous skating rink
at the back of the Rotunda, and here all the sorting of letters was
going on, with no apparatus whatever except what the men had
contrived for themselves out of seats, benches and old scenery.
They were all hard at work—a regular hive of bees. We think it is
greatly to the credit of the Post Office staff that in twelve days from
the outbreak of the rebellion and three days after the actual
cessation of hostilities the whole service was reorganised, with two
deliveries a day in Dublin, besides the ordinary country and mail
deliveries. The engineers and telegraphists were no less wonderful.
Indeed the staff from top to bottom of the office have worked
splendidly, and H. is very proud of them. We looked in at the poor
G.P.O. on our way back. It is still smouldering, and it will be quite a
fortnight before any excavations can be begun, but H. hopes to get
the safe that contains many of our treasures out of the wall and
opened in a few days.
To-day a Dr. C. who is staying in the hotel told me of an
extraordinary escape he had had during one of the days of the
rebellion. He was walking through one of the squares, which he had
been told was clear of snipers, with an old friend of about eighty,
when suddenly a bullet struck the pavement at the feet of his friend
and ricochetted off. It was within an inch of the old gentleman's feet,
and he was greatly interested, wanting to find the bullet to keep as
a memento. While they were looking about for it a man who had
been walking just behind them passed them on the pavement, and
had only gone a few yards when they heard a second rifle shot, and
the man dropped like a stone, shot through the heart. Dr. C. ran up
to him, but he was quite dead. There was absolutely no safety
anywhere from the snipers; man, woman, or child, nothing came
amiss to them. It was dastardly fighting, if it could be called fighting
at all.
A few days after St. Stephen's Green was supposed to have been
cleared of rebels, we were told of a young woman whose husband
was home from the war wounded and in one of the hospitals. She
was going to see him, so took a short cut through the Green, when
she was shot through the thigh; it is supposed by a rebel, in hiding
in the shrubberies.
Sunday, 7th.
I am sending off my other letters to you to-morrow, as we hear
the censorship is no longer so strict, and as from the papers the
position here seems now to be known in England private letters are
Welcome to our website – the ideal destination for book lovers and
knowledge seekers. With a mission to inspire endlessly, we offer a
vast collection of books, ranging from classic literary works to
specialized publications, self-development books, and children's
literature. Each book is a new journey of discovery, expanding
knowledge and enriching the soul of the reade
Our website is not just a platform for buying books, but a bridge
connecting readers to the timeless values of culture and wisdom. With
an elegant, user-friendly interface and an intelligent search system,
we are committed to providing a quick and convenient shopping
experience. Additionally, our special promotions and home delivery
services ensure that you save time and fully enjoy the joy of reading.
textbookfull.com