|
{ |
|
"paper_id": "2020", |
|
"header": { |
|
"generated_with": "S2ORC 1.0.0", |
|
"date_generated": "2023-01-19T14:06:30.010629Z" |
|
}, |
|
"title": "Meeting the 2020 Duolingo Challenge on a Shoestring", |
|
"authors": [ |
|
{ |
|
"first": "Tadashi", |
|
"middle": [], |
|
"last": "Nomoto", |
|
"suffix": "", |
|
"affiliation": { |
|
"laboratory": "", |
|
"institution": "National Institute of Japanese Literature", |
|
"location": { |
|
"addrLine": "10-3 Midori", |
|
"postCode": "190-0014", |
|
"settlement": "Tachikawa", |
|
"country": "Japan" |
|
} |
|
}, |
|
"email": "nomoto@acm.org" |
|
} |
|
], |
|
"year": "", |
|
"venue": null, |
|
"identifiers": {}, |
|
"abstract": "What is given below is a brief description of the two systems, called gFCONV and c-VAE, which we built in a response to the 2020 Duolingo Challenge. Both are neural models that aim at disrupting a sentence representation the encoder generates with an eye on increasing the diversity of sentences that emerge out of the process. Importantly, we decided not to turn to external sources for extra ammunition, curious to know how far we can go while confining ourselves to the data released by Duolingo (Mayhew et al., 2020). gFCONV works by taking over a pre-trained sequence model, intercepting the output its encoder produces on its way to the decoder. c-VAE is a conditional variational auto-encoder, seeking the diversity by blurring the representation that the encoder derives. Experiments on a corpus constructed out of the public dataset from Duolingo, containing some 4 million pairs of sentences, found that gFCONV is a consistent winner over c-VAE though both suffered heavily from a low recall.", |
|
"pdf_parse": { |
|
"paper_id": "2020", |
|
"_pdf_hash": "", |
|
"abstract": [ |
|
{ |
|
"text": "What is given below is a brief description of the two systems, called gFCONV and c-VAE, which we built in a response to the 2020 Duolingo Challenge. Both are neural models that aim at disrupting a sentence representation the encoder generates with an eye on increasing the diversity of sentences that emerge out of the process. Importantly, we decided not to turn to external sources for extra ammunition, curious to know how far we can go while confining ourselves to the data released by Duolingo (Mayhew et al., 2020). gFCONV works by taking over a pre-trained sequence model, intercepting the output its encoder produces on its way to the decoder. c-VAE is a conditional variational auto-encoder, seeking the diversity by blurring the representation that the encoder derives. Experiments on a corpus constructed out of the public dataset from Duolingo, containing some 4 million pairs of sentences, found that gFCONV is a consistent winner over c-VAE though both suffered heavily from a low recall.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Abstract", |
|
"sec_num": null |
|
} |
|
], |
|
"body_text": [ |
|
{ |
|
"text": "A major driver for our participating in the challenge was the curiosity to see whether recent approaches to sentence encoding with the variational auto-encoder (VAE) have any relevance to the generation of diverse sentences. (Bowman et al., 2016) were the first to explore the use of VAE in language generation. The work demonstrated that VAE provides a continuous code space for sentences, where any randomly picked data point in the space can be decoded to yield a coherent sentence, which is significant given that the conventional RNNs do not provide such a capability. The problem with VAE however, is that it has no mechanism to ensure that the meaning of the source sentence is passed over to the output, which often causes a sentence to be altered, or deformed beyond recognition. While VAE is a popular approach people turn to as a way to diversify sentences the model generates, no definitive answer has been found on how to control or tame what it spews out. A typical solution is to fuse a VAE code with the output of a regular sentence encoder, in order to encourage the decoder to output a sentence that retains some semantic features present in the source sentence (Gupta et al., 2017) . Also noteworthy is a recent work by (Guu et al., 2018) , who building on an idea similar to VAE, talk about modeling the distribution of cosine similarities between word vectors for the input and target. (Li et al., 2015) is something of an odd ball in the pursuit of the diversity in sentence generation. The authors argued that we could achieve the diversity by discouraging the decoder to select candidates that are similar to the input. A clear advantage they have over others is that their scheme does not involve any learning and is straightforward to implement.", |
|
"cite_spans": [ |
|
{ |
|
"start": 225, |
|
"end": 246, |
|
"text": "(Bowman et al., 2016)", |
|
"ref_id": "BIBREF1" |
|
}, |
|
{ |
|
"start": 1180, |
|
"end": 1200, |
|
"text": "(Gupta et al., 2017)", |
|
"ref_id": "BIBREF3" |
|
}, |
|
{ |
|
"start": 1239, |
|
"end": 1257, |
|
"text": "(Guu et al., 2018)", |
|
"ref_id": "BIBREF4" |
|
}, |
|
{ |
|
"start": 1407, |
|
"end": 1424, |
|
"text": "(Li et al., 2015)", |
|
"ref_id": "BIBREF5" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "The idea that one can view a latent representation as a sample drawn from some probabilistic distribution inspired people to explore its potential in a wide range of tasks and domains. (Miao et al., 2015) , while working on document modeling, suggested that we use VAE as a way to get a compact representation for a document. (Fang et al., 2019) argued for using a sample based distribution over Gaussian distribution for a latent code to better express the holistic property of the source sentence.", |
|
"cite_spans": [ |
|
{ |
|
"start": 185, |
|
"end": 204, |
|
"text": "(Miao et al., 2015)", |
|
"ref_id": "BIBREF7" |
|
}, |
|
{ |
|
"start": 326, |
|
"end": 345, |
|
"text": "(Fang et al., 2019)", |
|
"ref_id": "BIBREF2" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "In this work, we focus on two approaches, both based on VAE: one that attempts to achieve the diversity by generalizing the sentence representation produced by the encoder; and another which randomly perturbs the encoder's output during the sentence generation. We report here their respective performance on a test corpus we carved out of the official training data. For the final submission, we went along with the latter approach. Our effort revolved around two questions: (1) how best to incorporate likelihood scores of target translations that were provided as part of the training data, and (2) how not to rely on an external resource while building a solution. We wanted to know how far we can go using only the data made available to us at the competition, and nothing more. Our answer to the first question takes advantage of the fact that a set of translations associated with each English prompt are considered an equivalence class in the sense that if we take any pair from the set, we can substitute one for the other without significantly affecting its meaning. We may take the likelihood that a human picks a particular sentence (call it X) as a good translation for some prompt (P) as the probability of its being a paraphrase of some other sentence (say Y) from a group of possible translations of which X is part. The intuition here is that if X is more typical as a translation of P, it is more likely to serve as a paraphrase of whatever other way we may have to express P in the target language. Following this idea, we created training data by randomly sampling a pair of sentences (both in the same language) that appear as alternate translations for a given prompt in accordance with their popular rating. For each prompt, we sampled 2,000 pairs of translations (which may include pairs consisting of identical sentences), resulting in 4,601,000 training instances (which amount to 2,300 prompts plus those provided in the development and test set) (Mayhew et al., 2020) . 1 We set aside 100", |
|
"cite_spans": [ |
|
{ |
|
"start": 1974, |
|
"end": 1995, |
|
"text": "(Mayhew et al., 2020)", |
|
"ref_id": "BIBREF6" |
|
}, |
|
{ |
|
"start": 1998, |
|
"end": 1999, |
|
"text": "1", |
|
"ref_id": null |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "1 For this year's challenge, we worked only on the English-Japanese track. We included both test and development sets as part of training data, as a way to prevent the algorithm from stumbling upon unknown tokens in the test set. We don't see this as much of a problem because each prompt in development and test sets carries no more than one translation, i.e. a training pair we get from the development and test set has a same sentence for both source and target. We made use of MeCab for tokenizing sentences in Japanese.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Introduction", |
|
"sec_num": "1" |
|
}, |
|
{ |
|
"text": "Figure 2: gFCONV prompts as a private development set and another 100 for testing. We included in each training instance an English prompt as well as its translation in order to prevent paraphrases the algorithm generates from diverging from the meaning of the prompt (Table 1 ). Figure 1 shows a schematic picture of how our approach works. We feed into the system a prompt and its translation which we assume to be given (via AWS, for example). Out comes its paraphrases (or translations in varied styles). The model we built is essentially one based on Fairseq's convolution to sequence architecture of the type called 'fconv iwslt de en' (call it FCONV) which features 4 convolutional layers for the encoder and 3 for the decoder. 2 The embedding dimension for the input and output token was set to 256. We did not use pre-trained embeddings for either of the languages we dealt with. Neither did we make any architectural change to FCONV. We simply trained it as it was given. A departure comes in the testing phase. Following (Guu et al., 2018) , we applied a Gaussian noise on the output of the encoder as it was sent to the decoder (Fig. 2) .", |
|
"cite_spans": [ |
|
{ |
|
"start": 735, |
|
"end": 736, |
|
"text": "2", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 1032, |
|
"end": 1050, |
|
"text": "(Guu et al., 2018)", |
|
"ref_id": "BIBREF4" |
|
} |
|
], |
|
"ref_spans": [ |
|
{ |
|
"start": 268, |
|
"end": 276, |
|
"text": "(Table 1", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 280, |
|
"end": 288, |
|
"text": "Figure 1", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 1140, |
|
"end": 1148, |
|
"text": "(Fig. 2)", |
|
"ref_id": null |
|
} |
|
], |
|
"eq_spans": [], |
|
"section": "Encoder Decoder", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "EQUATION", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [ |
|
{ |
|
"start": 0, |
|
"end": 8, |
|
"text": "EQUATION", |
|
"ref_id": "EQREF", |
|
"raw_str": "u = E(x) + \u03f5, \u03f5 \u223c N (0, k)", |
|
"eq_num": "(1)" |
|
} |
|
], |
|
"section": "Encoder Decoder", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "where x is an input and E(x) is an output from applying an encoder E on x. u denotes an input to a decoder. A larger noise means a greater disruption in the latent representation coming from the encoder, which we hoped would lead to an increase in the diversity of sentences being generated. We randomly sampled a noise from a normal distribution with the mean set to 0 and the variance rang- Table 1 : Training Instances. The source part of each input consists of two sections: the first section contains a sentence in an original language, followed by a translation in a target language, demarcated by a separator '@@@@.' SOURCE that apple is very big . @@@@ i like to work . @@@@ he drinks milk . @@@@ what are her strengths ? @@@@ what has she done ? @@@@", |
|
"cite_spans": [], |
|
"ref_spans": [ |
|
{ |
|
"start": 393, |
|
"end": 400, |
|
"text": "Table 1", |
|
"ref_id": null |
|
} |
|
], |
|
"eq_spans": [], |
|
"section": "Encoder Decoder", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Encoder Decoder ing from 0 to 0.6. In what follows, we refer to the scheme as gFCONV.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "TARGET", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "E(x) < l a t e x i t s h a 1 _ b a s e 6 4 = \" 9 O 9 x W X X A L p A o 6 X y r u X 3 R G W E F e w E = \" > A A A C v X i c h V G 5 S g N R F D 2 O W 4 x L o j a C j R g i s Q l v X F B s F E S w d I s K G s L M + I y D s z E z W T T 4 A x a 2 C l Y K F u J n 2 F g L F v k E s Y x g Y + F 9 k w G X k H g H 5 t 1 7 3 j n 3 n c t V H U P 3 f M a q b V J 7 R 2 d X d 6 Q n 2 t v X P x C L D w 5 t e 3 b B 1 X h G s w 3 b 3 V U V j x u 6 x T O + 7 h t 8 1 3 G 5 Y q o G 3 1 G P l 8 X 9 T p G 7 n m 5 b W / 6 J w 7 O m k r f 0 Q 1 1 T f A G t p M q T u X i C p V k Q Y 4 2 J H C Y J h L F m x 5 + x j w P Y 0 F C A C Q 4 L P u U G F H j 0 7 U E G g 0 N Y F h X C X M r 0 4 J 7 j D F H S F o j F i a E Q e k z / P F U V 6 l Q g j u C 6 1 L v U k l u m y i a 2 T V z B S z Z h 7 o W o R b V w 6 g W e f m r H k G Q v 7 J 7 V 2 B N 7 Y K / s s 8 W r o o e Y 8 I R O t a 7 l T i 5 2 P r L 5 8 a / K p N P H 0 b e q q U J 4 9 n G I + c C r T t 6 d A B F T a H V 9 8 f S y t r m w k a x M s F v 2 R v 5 v W J U 9 0 g R W 8 V 2 7 W + c b 1 4 j S W u W / S 2 x M t q f S 8 n R 6 d n 0 m s b Q c L j i C U Y w j R V u c w x J W s Y Y M v X u E C 1 z i S l q U u G R I V p 0 q t Y W a Y f w K q f Q F", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "TARGET", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "u W A V a M C u 3 Q E u 5 x Z x O c = \" > A A A C u n i c h V G 7 S g N B F D 1 Z 3 / G R q I 1 g I 4 a I V Z j 4 Q B G L g A i W i T E q q M j u O u q Q f b E 7 G z X B H 9 B W s b B S s B A / w 8 Z a s M g n i K W C j Y V 3 N w u + U O / C z r 1 n z r l z L l d z D O F J x u o x p a m 5 p b W t v S P e 2 d X d k 0 j 2 9 i 1 7 t u / q v K T b h u 2 u a q r H D W H x k h T S 4 K u O y 1 V T M / i K V p 4 L 7 l c q 3 P W E b S 3 J A 4 d v m O q O J b a F r k q C C t X N Z I p l W B h D P 5 N s l K Q Q R d 5 O 3 m M d W 7 C h w 4 c J D g u S c g M q P P r W k A W D Q 9 g G a o S 5 l I n w n u M Q c d L 6 x O L E U A k t 0 3 + H q h p 1 8 o k T c F 3 q v f c n d 5 8 q m 9 g 2 c Q N e + h f m W o R a V A d O v d D T Z + 0 Q 0 u y B X b N n d s d u 2 C N 7 + + P V o E c w 4 Q G d W k P L n c 3 E 0 U D x 9 V + V S a f E 7 o f q V 0 X g W W I b 0 6 F X Q d 6 d E A m m 0 B v 6 S v X s u T i z m K 6 N s E v 2 R P 4 v W J 3 d 0 g R W 5 U W / K v D F c 8 R p r d n v S / y Z L I 9 l s u O Z y c J E K j c f L b g d g x j G K G 1 x C j k s I I 8 S v", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "TARGET", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "We also looked at a conditional variational autoencoder (c-VAE), a close cousin of gFCONV for the sake of comparison. While both aim at building a latent representation that embraces the notion of uncertainty, c-VAE differs from the variance based approach in that it seeks to find a probabilistic distribution that defines a range of representations that the encoder churns out. In terms of formulae, this comes to the following (also see Fig. 3 for a visual intuition) .", |
|
"cite_spans": [], |
|
"ref_spans": [ |
|
{ |
|
"start": 440, |
|
"end": 470, |
|
"text": "Fig. 3 for a visual intuition)", |
|
"ref_id": null |
|
} |
|
], |
|
"eq_spans": [], |
|
"section": "TARGET", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "EQUATION", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [ |
|
{ |
|
"start": 0, |
|
"end": 8, |
|
"text": "EQUATION", |
|
"ref_id": "EQREF", |
|
"raw_str": "u = E(x) + r * z,", |
|
"eq_num": "(2)" |
|
} |
|
], |
|
"section": "TARGET", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Here z = \u00b5 + \u03f5 * \u03c5 with \u03f5 \u223c Unif[0, 1). \u00b5 and \u03c5 are a mean and variance, defined as \u00b5 = g(x), and \u03c5 = f (x), respectively. x is an input, g and f are some arbitrary functions over x. E(x) again denotes the output of an encoder. \u00b5 and \u03c5 are learnable parameters, which means that they need to be trained to have them work. It is worth noting that gFCONV has no extra 'learnable' parameters. r is a hyper-parameter to be set manually, which determines the degree of contribution of z to a latent representation of x. We combine E(x) and a representation sampled from a Gaussian distribution to build a final encoder output. Our decision to condition VAE on E(x) is motivated by a frequent observation in the past literature that VAE is poor at preserving the meaning of the source sentence, often transforming it beyond recognition. Conditioning VAE on the input is a popular trick to discourage the algorithm from straying too far away from the source.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "TARGET", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Implementation-wise, c-VAE was based on FCONV, from which we also built gFCONV. We kept all the hyper-parameter settings intact, e.g. the number of layers, the size and the number of filters, etc. We did not apply any scheduled annealing weight to the KL term in the loss function.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "TARGET", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "For gFCONV, we varied the variance parameter k (Eqn. 1) from 0.00 to 0.60 in increments of 0.05. For each value of k, we ran gFCONV on the test set 100 times, letting the model output 80 alternative translations for each prompt (Setting k to 0 reduces gFCONV to a vanilla FCONV). This had resulted in a pool of 8,000 candidates for a given prompt under a particular value of k. Out of which we retained only those that had a non zero similarity to gold translations by AWS. 3 We measured the similarity using LASER, 4 along with pre-trained word embeddings from FastText, 5 which LASER requires. We were interested to know how variance affected the performance, in particular how it contributed to improving the diversity.", |
|
"cite_spans": [ |
|
{ |
|
"start": 474, |
|
"end": 475, |
|
"text": "3", |
|
"ref_id": null |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "TARGET", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Table 2: Variance vs. Performance. 'P' denotes precision, 'R' recall, and 'k' variance. Numbers in red represent the baseline and those in blue the best performing system where we have a minimum divergence between Micro and Macro F1. ", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "132", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "Results are provided in Table 2 . The numbers shown were produced using the official scorer. In the following discussion, we concentrate on unweighted scores as our interest here is in knowing how much we improved the raw recall under the current setup. Note that weighted scores do not shed light on the true diversity of sentences we have garnered. Looking at Table 2 , we see gFCONV gaining on a vanilla FCONV, whose performance is represented by the numbers at k = 0.00. At k = 0.25, we see the raw recall jumping from 3.83 to 9.57, Micro F1 from 6.97 to 12.22, and Macro F1 from 11.37 to 13.18. Compare the difference between Micro and Macro F1 at k = 0.00 and that we have at k = 0.25. The difference for the latter is much smaller. This suggests that under gFCONV, the performance is more stable across test items compared to the vanilla FCONV. A large divergence at k = 0.00 indicates wild ups and downs in performance, suggesting that the model is doing beautifully well on some but failing miserably on others. In contrast to Micro F1, Macro F1 is blind to how many candidate translations there are for each prompt, so may not give us an accurate picture of how the model is doing on each prompt.", |
|
"cite_spans": [], |
|
"ref_spans": [ |
|
{ |
|
"start": 24, |
|
"end": 31, |
|
"text": "Table 2", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 362, |
|
"end": 369, |
|
"text": "Table 2", |
|
"ref_id": null |
|
} |
|
], |
|
"eq_spans": [], |
|
"section": "Results and Discussion", |
|
"sec_num": "3" |
|
}, |
|
{ |
|
"text": "As with gFCONV, we ran c-VAE on the test set 100 times, obtaining 100 distinct pools of candidate translations for each prompt. 6 We report in Table 3 , figures that represent performance on all the results combined in the manner we described for gFCONV. We varied r (in Eqn. 2) from 0.1 to 0.5 in 0.1 increments. We observe that c-VAE is somewhat behind gFCONV (in terms of divergence between Micro and Macro F1), though performing well over the baseline (numbers in red). A large gap between (unweighted) Micro and Macro 194 F1 again shows that the model suffers from a fluctuating performance, swinging wildly from one test item to another. The final submission for the official evaluation was prepared using gFCONV at k = 0.10, under the pseudonym 'darkside,' with the official results shown in Table 4 . 7", |
|
"cite_spans": [ |
|
{ |
|
"start": 128, |
|
"end": 129, |
|
"text": "6", |
|
"ref_id": null |
|
}, |
|
{ |
|
"start": 523, |
|
"end": 526, |
|
"text": "194", |
|
"ref_id": null |
|
} |
|
], |
|
"ref_spans": [ |
|
{ |
|
"start": 143, |
|
"end": 150, |
|
"text": "Table 3", |
|
"ref_id": "TABREF1" |
|
}, |
|
{ |
|
"start": 799, |
|
"end": 806, |
|
"text": "Table 4", |
|
"ref_id": "TABREF2" |
|
} |
|
], |
|
"eq_spans": [], |
|
"section": "Results and Discussion", |
|
"sec_num": "3" |
|
}, |
|
{ |
|
"text": "We discussed two approaches as a way to tackle the Duolingo Challenge. One is gFCONV, which takes over a pre-trained sequence model, intercepts and perturbs the output its encoder produces on its way to the decoder. Another is c-VAE, a conditional variational auto-encoder, which seeks the diversity by blurring the representation that the encoder derives. Either approach, it was found, outperformed the vanilla FCONV. We also noted a large discrepancy between Micro and Macro F1, suggesting that the models' performance is not even and fluctuates wildly from item to item. Moreover, there were some test prompts for which the models were not able to find any translations. We recognize that this is an area we need to scrutinize to further improve the performance. In the long run, it would be interesting to see if we can bring to the task recent developments in VAE such as (Bouchacourt et al., 2018) .", |
|
"cite_spans": [ |
|
{ |
|
"start": 878, |
|
"end": 904, |
|
"text": "(Bouchacourt et al., 2018)", |
|
"ref_id": "BIBREF0" |
|
} |
|
], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "Conclusions", |
|
"sec_num": "4" |
|
}, |
|
{ |
|
"text": "https://github.com/pytorch/fairseq", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "i.e. those found in the 'test.en ja.aws baseline.pred.txt' in the 'staple-2020-test-blind' directory.4 https://github.com/facebookresearch/ LASER 5 https://fasttext.cc/docs/en/ crawl-vectors.html", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "", |
|
"sec_num": null |
|
}, |
|
{ |
|
"text": "We generated 8,000 hypotheses for each prompt under a particular value of r, 80 at each round.", |
|
"cite_spans": [], |
|
"ref_spans": [], |
|
"eq_spans": [], |
|
"section": "", |
|
"sec_num": null |
|
} |
|
], |
|
"back_matter": [], |
|
"bib_entries": { |
|
"BIBREF0": { |
|
"ref_id": "b0", |
|
"title": "Multi-level variational autoencoder: Learning disentangled representations from grouped observations", |
|
"authors": [ |
|
{ |
|
"first": "Diane", |
|
"middle": [], |
|
"last": "Bouchacourt", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Ryota", |
|
"middle": [], |
|
"last": "Tomioka", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Sebastian", |
|
"middle": [], |
|
"last": "Nowozin", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2018, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Diane Bouchacourt, Ryota Tomioka, and Sebastian Nowozin. 2018. Multi-level variational autoen- coder: Learning disentangled representations from grouped observations. In AAAI 2018.", |
|
"links": null |
|
}, |
|
"BIBREF1": { |
|
"ref_id": "b1", |
|
"title": "Generating sentences from a continuous space", |
|
"authors": [ |
|
{ |
|
"first": "R", |
|
"middle": [], |
|
"last": "Samuel", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Luke", |
|
"middle": [], |
|
"last": "Bowman", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Oriol", |
|
"middle": [], |
|
"last": "Vilnis", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Andrew", |
|
"middle": [], |
|
"last": "Vinyals", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Rafal", |
|
"middle": [], |
|
"last": "Dai", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Samy", |
|
"middle": [], |
|
"last": "Jozefowicz", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "", |
|
"middle": [], |
|
"last": "Bengio", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2016, |
|
"venue": "Proceedings of The 20th SIGNLL Conference on Computational Natural Language Learning", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "10--21", |
|
"other_ids": { |
|
"DOI": [ |
|
"10.18653/v1/K16-1002" |
|
] |
|
}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Samuel R. Bowman, Luke Vilnis, Oriol Vinyals, An- drew Dai, Rafal Jozefowicz, and Samy Bengio. 2016. Generating sentences from a continuous space. In Proceedings of The 20th SIGNLL Con- ference on Computational Natural Language Learn- ing, pages 10-21, Berlin, Germany. Association for Computational Linguistics.", |
|
"links": null |
|
}, |
|
"BIBREF2": { |
|
"ref_id": "b2", |
|
"title": "Implicit deep 7 We did not submit the version at 0.25 which turned out to be the best, due to its late discovery, which came well past the deadline. latent variable models for text generation", |
|
"authors": [ |
|
{ |
|
"first": "Le", |
|
"middle": [], |
|
"last": "Fang", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Chunyuan", |
|
"middle": [], |
|
"last": "Li", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Jianfeng", |
|
"middle": [], |
|
"last": "Gao", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Wen", |
|
"middle": [ |
|
"Jun" |
|
], |
|
"last": "Dong", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Changyou", |
|
"middle": [], |
|
"last": "Chen", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2019, |
|
"venue": "EMNLP/IJCNLP", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Le Fang, Chunyuan Li, Jianfeng Gao, Wen Jun Dong, and Changyou Chen. 2019. Implicit deep 7 We did not submit the version at 0.25 which turned out to be the best, due to its late discovery, which came well past the deadline. latent variable models for text generation. In EMNLP/IJCNLP.", |
|
"links": null |
|
}, |
|
"BIBREF3": { |
|
"ref_id": "b3", |
|
"title": "A deep generative framework for paraphrase generation", |
|
"authors": [ |
|
{ |
|
"first": "Ankush", |
|
"middle": [], |
|
"last": "Gupta", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Arvind", |
|
"middle": [], |
|
"last": "Agarwal", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Prawaan", |
|
"middle": [], |
|
"last": "Singh", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Piyush", |
|
"middle": [], |
|
"last": "Rai", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2017, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Ankush Gupta, Arvind Agarwal, Prawaan Singh, and Piyush Rai. 2017. A deep generative framework for paraphrase generation. CoRR, abs/1709.05074.", |
|
"links": null |
|
}, |
|
"BIBREF4": { |
|
"ref_id": "b4", |
|
"title": "Generating sentences by editing prototypes", |
|
"authors": [ |
|
{ |
|
"first": "Kelvin", |
|
"middle": [], |
|
"last": "Guu", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "B", |
|
"middle": [], |
|
"last": "Tatsunori", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Yonatan", |
|
"middle": [], |
|
"last": "Hashimoto", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Percy", |
|
"middle": [], |
|
"last": "Oren", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "", |
|
"middle": [], |
|
"last": "Liang", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2018, |
|
"venue": "Transactions of the Association for Computational Linguistics", |
|
"volume": "6", |
|
"issue": "", |
|
"pages": "437--450", |
|
"other_ids": { |
|
"DOI": [ |
|
"10.1162/tacl_a_00030" |
|
] |
|
}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Kelvin Guu, Tatsunori B. Hashimoto, Yonatan Oren, and Percy Liang. 2018. Generating sentences by editing prototypes. Transactions of the Association for Computational Linguistics, 6:437-450.", |
|
"links": null |
|
}, |
|
"BIBREF5": { |
|
"ref_id": "b5", |
|
"title": "A diversity-promoting objective function for neural conversation models", |
|
"authors": [ |
|
{ |
|
"first": "Jiwei", |
|
"middle": [], |
|
"last": "Li", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Michel", |
|
"middle": [], |
|
"last": "Galley", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Chris", |
|
"middle": [], |
|
"last": "Brockett", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Jianfeng", |
|
"middle": [], |
|
"last": "Gao", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Bill", |
|
"middle": [], |
|
"last": "Dolan", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2015, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Jiwei Li, Michel Galley, Chris Brockett, Jianfeng Gao, and Bill Dolan. 2015. A diversity-promoting objec- tive function for neural conversation models. CoRR, abs/1510.03055.", |
|
"links": null |
|
}, |
|
"BIBREF6": { |
|
"ref_id": "b6", |
|
"title": "Simultaneous translation and paraphrase for language education", |
|
"authors": [ |
|
{ |
|
"first": "S", |
|
"middle": [], |
|
"last": "Mayhew", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "K", |
|
"middle": [], |
|
"last": "Bicknell", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "C", |
|
"middle": [], |
|
"last": "Brust", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "B", |
|
"middle": [], |
|
"last": "Mcdowell", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "W", |
|
"middle": [], |
|
"last": "Monroe", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "B", |
|
"middle": [], |
|
"last": "Settles", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2020, |
|
"venue": "Proceedings of the ACL Workshop on Neural Generation and Translation (WNGT). ACL", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "S. Mayhew, K. Bicknell, C. Brust, B. McDowell, W. Monroe, and B. Settles. 2020. Simultaneous translation and paraphrase for language education. In Proceedings of the ACL Workshop on Neural Generation and Translation (WNGT). ACL.", |
|
"links": null |
|
}, |
|
"BIBREF7": { |
|
"ref_id": "b7", |
|
"title": "Neural variational inference for text processing", |
|
"authors": [ |
|
{ |
|
"first": "Yishu", |
|
"middle": [], |
|
"last": "Miao", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Lei", |
|
"middle": [], |
|
"last": "Yu", |
|
"suffix": "" |
|
}, |
|
{ |
|
"first": "Phil", |
|
"middle": [], |
|
"last": "Blunsom", |
|
"suffix": "" |
|
} |
|
], |
|
"year": 2015, |
|
"venue": "", |
|
"volume": "", |
|
"issue": "", |
|
"pages": "", |
|
"other_ids": {}, |
|
"num": null, |
|
"urls": [], |
|
"raw_text": "Yishu Miao, Lei Yu, and Phil Blunsom. 2015. Neu- ral variational inference for text processing. CoRR, abs/1511.06038.", |
|
"links": null |
|
} |
|
}, |
|
"ref_entries": { |
|
"FIGREF0": { |
|
"uris": null, |
|
"type_str": "figure", |
|
"text": "Figure 1: Translation as Paraphrase", |
|
"num": null |
|
}, |
|
"FIGREF1": { |
|
"uris": null, |
|
"type_str": "figure", |
|
"text": "a a m c u w = = < / l a t e x i t > z < l a t e x i t s h a 1 _ b a s e 6 4 = \" x e 0 h e D b n E", |
|
"num": null |
|
}, |
|
"FIGREF2": { |
|
"uris": null, |
|
"type_str": "figure", |
|
"text": "c t x j B O c K r O K p g i l 3 K A q s U j T j y + h y H e d r p w L < / l a t e x i t >Figure 3: Conditional VAE", |
|
"num": null |
|
}, |
|
"TABREF1": { |
|
"html": null, |
|
"content": "<table><tr><td/><td/><td/><td/><td colspan=\"2\">: Conditional VAE</td></tr><tr><td/><td/><td/><td colspan=\"2\">UNWEIGHTED</td><td/><td>WEIGHTED</td></tr><tr><td>r</td><td>P</td><td>R</td><td colspan=\"2\">Micro F1 Macro F1</td><td>R</td><td>Micro F1 Macro F1</td></tr><tr><td colspan=\"3\">0.0 39.16 3.83</td><td>6.97</td><td>11.37</td><td>13.62</td><td>20.21</td><td>16.35</td></tr><tr><td colspan=\"3\">0.1 24.06 7.11</td><td>10.97</td><td>14.84</td><td>19.41</td><td>21.49</td><td>18.08</td></tr><tr><td colspan=\"3\">0.2 22.55 7.98</td><td>11.78</td><td>14.81</td><td>20.16</td><td>21.29</td><td>17.87</td></tr><tr><td colspan=\"3\">0.3 18.28 7.72</td><td>10.86</td><td>14.28</td><td>20.09</td><td>19.15</td><td>17.10</td></tr><tr><td colspan=\"3\">0.4 17.09 7.58</td><td>10.50</td><td>13.12</td><td>20.21</td><td>18.52</td><td>15.69</td></tr><tr><td colspan=\"3\">0.5 15.68 7.70</td><td>10.33</td><td>12.73</td><td>20.08</td><td>17.61</td><td>15.31</td></tr></table>", |
|
"type_str": "table", |
|
"text": "", |
|
"num": null |
|
}, |
|
"TABREF2": { |
|
"html": null, |
|
"content": "<table><tr><td colspan=\"5\">Phase Rank Precision W. Recall W. F1</td></tr><tr><td>DEV</td><td>6/6</td><td>0.369</td><td>0.183</td><td>0.181</td></tr><tr><td>TEST</td><td>6/6</td><td>0.349</td><td>0.212</td><td>0.</td></tr></table>", |
|
"type_str": "table", |
|
"text": "Official Results. By W. Recall and W. F1, we mean Weighted Recall and F1.", |
|
"num": null |
|
} |
|
} |
|
} |
|
} |