Starting from:

$30

Assignment #5 Sub-word modeling

CS 224n: Assignment #5 This is the last assignment before you begin working on your projects. It is designed to prepare you for implementing things by yourself. This assignment is coding-heavy and written-question-light. The complexity of the code itself is similar to the complexity of the code you wrote in Assignment 4. What makes this assignment more difficult is that we give you much less help in writing and debugging that code. In particular, in this assignment: • There is less scaffolding – instead of filling in functions, sometimes you will implement whole classes, without us telling you what the API should be. • We do not tell you how many lines of code are needed to solve a problem. • The local sanity-checks that we provide are almost all extremely basic (e.g. check output is correct type or shape). More likely than not, the first time you write your code there will be bugs that the sanity check does not catch. It is up to you to check your own code, to maximize the chance that your model trains successfully. In some questions we explicitly ask you to design and run your own tests, but you should be checking your code throughout. • When you upload your code to Gradescope, it will be autograded with some less-basic tests, but the results of these autograder tests will be hidden until after grades are released. • The final model (which you train at the end of Part 2) takes around 8-12 hours to train on the recommended Azure VM (time varies depending on your implementation, and when the training procedure hits the early stopping criterion). Keep this in mind when budgeting your time. • We also have new policies on how TAs can help students in Office Hours and on Piazza – see Piazza announcement. This assignment explores two key concepts – sub-word modeling and convolutional networks – and applies them to the NMT system we built in the previous assignment. The Assignment 4 NMT model can be thought of as four stages: 1. Embedding layer: Converts raw input text (for both the source and target sentences) to a sequence of dense word vectors via lookup. 2. Encoder: A RNN that encodes the source sentence as a sequence of encoder hidden states. 3. Decoder: A RNN that operates over the target sentence and attends to the encoder hidden states to produce a sequence of decoder hidden states. 4. Output prediction layer: A linear layer with softmax that produces a probability distribution for the next target word on each decoder timestep. All four of these subparts model the NMT problem at a word level. In Section 1 of this assignment, we will replace (1) with a character-based convolutional encoder, and in Section 2 we will enhance (4) by adding a character-based LSTM decoder.1 This will hopefully improve our BLEU performance on the test set! Lastly, in Section 3, we will inspect the word embeddings produced by our character-level encoder, and analyze some errors from our new NMT system. 1We could also modify parts (2) and (3) of the NMT model to use subword information. However, to keep things simple for this assignment, we just make changes to the embedding and output prediction layers. 1 CS 224n Assignment 5 Page 2 of 11 1. Character-based convolutional encoder for NMT (36 points) In Assignment 4, we used a simple lookup method to get the representation of a word. If a word is not in our pre-defined vocabulary, then it is represented as the token (which has its own embedding). Figure 1: Lookup-based word embedding model from Assignment 4, which produces a word embedding of length eword. In this section, we will first describe a method based on Kim et al.’s work in Character-Aware Neural Language Models, 2 then we’ll implement it. Specifically, we’ll replace the ‘Embedding lookup’ stage in Figure 1 with a sequence of more involved stages, depicted in Figure 2. Figure 2: Character-based convolutional encoder, which ultimately produces a word embedding of length eword. Model description and written questions The model in Figure 2 has four main stages, which we’ll describe for a single example (not a batch): 1. Convert word to character indices. We have a word x (e.g. Anarchy in Figure 2) that we wish to represent. Assume we have a predefined ‘vocabulary’ of characters (for example, all lowercase letters, uppercase letters, numbers, and some punctuation). By looking up the index of each character, we can thus represent the length-l word x as a vector of integers: x = [c1, c2, · · · , cl ] ∈ Z l (1) where each ci is an integer index into the character vocabulary. 2Character-Aware Neural Language Models, Kim et al., 2016. https://arxiv.org/abs/1508.06615 CS 224n Assignment 5 Page 3 of 11 2. Padding and embedding lookup. Using a special ‘character’, we pad (or truncate) every word so that it has length mword (this is some predefined hyperparameter representing maximum word length): xpadded = [c1, c2, · · · , cmword ] ∈ Z mword (2) For each of these characters ci , we lookup a dense character embedding (which has shape echar). This yields a tensor xemb: xemb = CharEmbedding(xpadded) ∈ R mword×echar (3) We’ll reshape xemb to obtain xreshaped ∈ R echar×mword before feeding into the convolutional network.3 3. Convolutional network. To combine these character embeddings, we’ll use 1-dimensional convolutions. The convolutional layer has two hyperparameters:4 the kernel size k (also called window size), which dictates the size of the window used to compute features, and the number of filters f (also called number of output features or number of output channels). The convolutional layer has a weight matrix W ∈ R f×echar×k and a bias vector b ∈ R f . To compute the i th output feature (where i ∈ {1, . . . , f}) for the t th window of the input, the convolution operation is performed between the input window5 (xreshaped)[:, t:t+k−1] ∈ R echar×k and the weights W[i,:,:] ∈ R echar×k , and the bias term bi ∈ R is added: (xconv)i,t = sum W[i,:,:] ? (xreshaped)[:, t:t+k−1]? + bi ∈ R (4) where ? is elementwise multiplication of two matrices with the same shape and sum is the sum of all the elements in the matrix. This operation is performed for every feature i and every window t, where t ∈ {1, . . . , mchar − k + 1}. Overall this produces output xconv: xconv = Conv1D(xreshaped) ∈ R f×(mword−k+1) (5) For our application, we’ll set f to be equal to eword, the size of the final word embedding for word x (the rightmost vector in Figure 2). Therefore, xconv ∈ R eword×(mword−k+1) (6) Finally, we apply the ReLU function to xconv, then use max-pooling to reduce this to a single vector xconv out ∈ R eword , which is the final output of the Convolutional Network: xconv out = MaxPool(ReLU(xconv)) ∈ R eword (7) Here, MaxPool simply takes the maximum across the second dimension. Given a matrix M ∈ R a×b , then MaxPool(M) ∈ R a with MaxPool(M)i = max1≤j≤b Mij for i ∈ {1, . . . , a}. 4. Highway layer and dropout. As mentioned in Lectures 7 and 11, Highway Networks6 have a skip-connection controlled by a dynamic gate. Given the input xconv out ∈ R eword , we compute: xproj = ReLU(Wprojxconv out + bproj) ∈ R eword (8) xgate = σ(Wgatexconv out + bgate) ∈ R eword (9) where the weight matrices Wproj,Wgate ∈ R eword×eword and bias vectors bproj, bgate ∈ R eword . Next, we obtain the output xhighway by using the gate to combine the projection with the skip-connection: xhighway = xgate ? xproj + (1 − xgate) ? xconv out ∈ R eword (10) 3Necessary because the PyTorch Conv1D function performs the convolution only on the last dimension of the input. 4We assume no padding is applied and the stride is 1. 5 In the notation (xreshaped)[:, t:t+k−1], the range t : t + k − 1 is inclusive, i.e. the width-k window {t, t + 1, . . . , t + k − 1}. 6Highway Networks, Srivastava et al., 2015. https://arxiv.org/abs/1505.0038 CS 224n Assignment 5 Page 4 of 11 where ? denotes element-wise multiplication. Finally, we apply dropout to xhighway: xword emb = Dropout(xhighway) ∈ R eword (11) We’re done! xword emb is the embedding we will use to represent word x – this will replace the lookupbased word embedding we used in Assignment 4. (a) (1 point) (written) In Assignment 4 we used 256-dimensional word embeddings (eword = 256), while in this assignment, it turns out that a character embedding size of 50 suffices (echar = 50). In 1-2 sentences, explain one reason why the embedding size used for character-level embeddings is typically lower than that used for word embeddings. (b) (1 point) (written) Write down the total number of parameters in the character-based embedding model (Figure 2), then do the same for the word-based lookup embedding model (Figure 1). Write each answer as a single expression (though you may show working) in terms of echar, k, eword, Vword (the size of the word-vocabulary in the lookup embedding model) and Vchar (the size of the character-vocabulary in the character-based embedding model). Given that in our code, k = 5, Vword ≈ 50, 000 and Vchar = 96, state which model has more parameters, and by what factor (e.g. twice as many? a thousand times as many?). (c) (2 points) (written) In step 3 of the character-based embedding model, instead of using a 1D convnet, we could have used a RNN instead (e.g. feed the sequence of characters into a bidirectional LSTM and combine the hidden states using max-pooling). Explain one advantage of using a convolutional architecture rather than a recurrent architecture for this purpose, making it clear how the two contrast. Below is an example answer; you should give a similar level of detail and choose a different advantage. When a 1D convnet computes features for a given window of the input, those features depend on the window only – not any other inputs to the left or right. By contrast, a RNN needs to compute the hidden states sequentially, from left to right (and also right to left, if the RNN is bidirectional). Therefore, unlike a RNN, a convnet’s features can be computed in parallel, which means that convnets are generally faster, especially for long sequences. (d) (4 points) (written) In lectures we learned about both max-pooling and average-pooling. For each pooling method, please explain one advantage in comparison to the other pooling method. For each advantage, make it clear how the two contrast, and write to a similar level of detail as in the example given in the previous question. Implementation In the remainder of Section 1, we will be implementing the character-based encoder in our NMT system. Though you could implement this on top of your own Assignment 4 solution code, for simplicity and fairness we have supplied you7 with a full implementation of the Assignment 4 word-based NMT model (with some modifications); this is what you will use as a basis for your Assignment 5 code. You will not need to use your VM until Section 2 – the rest of this section can be done on your local machine. In order to run the model code on your local machine, please run the following command to create the proper virtual environment: conda env create --file local_env.yml Note that this virtual environment will not be needed on the VM. Run the following to create the correct vocab files: sh run.sh vocab 7available on Stanford Box; requires Stanford login CS 224n Assignment 5 Page 5 of 11 Let’s implement the entire network specified in Figure 2, from left to right. (e) (1 point) (coding) In vocab.py, implement the method words2charindices() (hint: copy the structure of words2indices()) to convert each character to its corresponding index in the character-vocabulary. This corresponds to the first two steps of Figure 2 (splitting and vocab lookup). Run the following for a non-exhaustive sanity check: python sanity_check.py 1e (f) (4 points) (coding) Implement pad sents char() in utils.py, similar to the version for words. This method should pad at the character and word level. All words should be padded/truncated to max word length mword = 21, and all sentences should be padded to the length of the longest sentence in the batch. A padding word is represented by mword -characters. Run the following for a non-exhaustive sanity check: python sanity_check.py 1f (g) (3 points) (coding) Implement to input tensor char() in vocab.py to connect the previous two parts: use both methods created in the previous steps and convert the resulting padded sentences to a torch tensor. Ensure you reshape the dimensions so that the output has shape: (max sentence length, batch size, max word length) so that we don’t have any shape errors downstream! (h) (3 points) (coding and written) In the empty file highway.py, implement the highway network as a nn.Module class called Highway. 8 • Your module will need a init () and a forward() function (whose inputs and outputs you decide for yourself). • The forward() function will need to map from xconv out to xhighway. • Note that although the model description above is not batched, your forward() function should operate on batches of words. • Make sure that your module uses two nn.Linear layers (this is important for the autograder). There is no provided sanity check for your Highway implementation – instead, you will now write your own code to thoroughly test your implementation. You should do whatever you think is sufficient to convince yourself that your module computes what it’s supposed to compute. Possible ideas include (and you should do multiple): • Write code to check that the input and output have the expected shapes and types. Before you do this, make sure you’ve written docstrings for init () and forward() – you can’t test the expected output if you haven’t clearly laid out what you expect it to be! • Print out the shape of every intermediate value; verify all the shapes are correct. • Create a small instance of your highway network (with small, manageable dimensions), manually define some input, manually define the weights and biases, manually calculate what the output should be, and verify that your module does indeed return that value. • Similar to previous, but you could instead print all intermediate values and check each is correct. • If you can think of any ‘edge case’ or ‘unusual’ inputs, create test cases based on those. Once you’ve finished testing your module, write a short description of the tests you carried out, and why you believe they are sufficient. The 3 points for this question are awarded based on your written description of the tests only. Important: to avoid crashing the autograder, make sure that any print statements are commented out when you submit your code. 8 If you’re unsure how to structure a nn.Module, you can start here: https://pytorch.org/tutorials/beginner/ examples_nn/two_layer_net_module.html. After that, you could look at the many examples of nn.Modules in Assignments 3 and 4. CS 224n Assignment 5 Page 6 of 11 (i) (3 points) (coding and written) In the empty file cnn.py, implement the convolutional network as a nn.Module class called CNN. • Your module will need a init () and a forward() function (whose inputs and outputs you decide for yourself). • The forward() function will need to map from xreshaped to xconv out. • Note that although the model description above is not batched, your forward() function should operate on batches of words. • Make sure that your module uses one nn.Conv1d layer (this is important for the autograder). • Use a kernel size of k = 5. As in (h), write code to thoroughly test your implementation. Once you’ve finished testing your module, write a short description of the tests you carried out, and why you believe they are sufficient. As in (h), the 3 points are for your written description only. (j) (9 points) (coding) Write the init () and forward() functions for the ModelEmbeddings class in model embeddings.py. 9 • The forward() function must map from xpadded to xword emb – note this is for whole batches of sentences, rather than batches of words. • You will need to use the CNN and Highway modules you created. • Don’t forget the dropout layer! Use 0.3 dropout probability. • Your ModelEmbeddings class should contain one nn.Embedding object (this is important for the autograder). • Remember that we are using echar = 50. • Depending on your implementation of CNN and Highway, it’s likely that you will need to reshape tensors to get them into the shape required by CNN and Highway, and then reshape again to get the final output of ModelEmbeddings.forward(). Sanity check if the output from your model has the correct shape by running the following: python sanity_check.py 1j The majority of the 9 points are awarded based on a hidden autograder. Though we don’t require it, you should check your implementation using techniques similar to what you did in (h) and (i), before you do the ‘small training run’ check in (l). (k) (2 points) (coding) In nmt model.py, complete the forward() method to use character-level padded encodings instead of word-level encodings. This ties together your ModelEmbeddings code with the preprocessing code you wrote. Check your code! (l) (3 points) (coding) On your local machine, confirm that you’re in the proper conda enironment then execute the following command. This will train your model on a very small subset of the training data, then test it. Your model should overfit the training data. sh run.sh train_local_q1 sh run.sh test_local_q1 Running these should take around 5 minutes (but this depends on your local machine). You should observe the average loss go down to near 0 and average perplexity on train and dev set go to 1 during training. Once you run the test, you should observe BLEU score on the test set higher than 99.00. If you don’t observe these things, you probably need to go back to debug! Important: Make sure not to modify the output file (outputs/test outputs local q1.txt) generated by the code – you need this to be included when you run the submission script. 9Note that in this assignment, the full NMT model defines two ModelEmbeddings objects (one for source and one for target), whereas in Assignment 4, there was a single ModelEmbeddings object that contained two nn.Embedding objects (one for source and one for target). CS 224n Assignment 5 Page 7 of 11 2. Character-based LSTM decoder for NMT (26 points) We will now add a LSTM-based character-level decoder to our NMT system, based on Luong & Manning’s work.10 The main idea is that when our word-level decoder produces an token, we run our character-level decoder (which you can think of as a character-level conditional language model) to instead generate the target word one character at a time, as shown in Figure 3. This will help us to produce rare and out-of-vocabulary target words. Figure 3: A character-based decoder which is triggered if the word-based decoder produces an UNK. Figure courtesy of Luong & Manning. We now describe the model in three sections: Forward computation of Character Decoder Given a sequence of integers x1, . . . , xn ∈ Z representing a sequence of characters, we lookup their character embeddings x1, . . . , xn ∈ R echar and pass these as input into the (unidirectional) LSTM, obtaining hidden states h1, . . . , hn and cell states c1, . . . , cn: ht, ct = CharDecoderLSTM(xt, ht−1, ct−1) where ht, ct ∈ R h (12) where h is the hidden size of the CharDecoderLSTM. The initial hidden and cell states h0 and c0 are both set to the combined output vector (refer to Assignment 4) for the current timestep of the main word-level NMT decoder. For every timestep t ∈ {1, . . . , n} we compute scores (also called logits) st ∈ R Vchar : st = Wdecht + bdec ∈ R Vchar (13) where the weight matrix Wdec ∈ R Vchar×h and the bias vector bdec ∈ R Vchar . If we passed st through a softmax function, we would have the probability distribution for the next character in the sequence. 10Achieving Open Vocabulary Neural Machine Translation with Hybrid Word-Character Models, Luong and Manning, 2016. https://arxiv.org/abs/1604.00788 CS 224n Assignment 5 Page 8 of 11 Training of Character Decoder When we train the NMT system, we train the character decoder on every word in the target sentence (not just the words represented by ). For example, on a particular step of the main NMT decoder, if the target word is music then the input sequence for the CharDecoderLSTM is [x1, . . . , xn] = [,m,u,s,i,c] and the target sequence for the CharDecoderLSTM is [x2, . . . , xn+1] = [m,u,s,i,c,]. We pass the input sequence x1, . . . , xn, (along with the initial states h0 and c0 obtained from the combined output vector) into the CharDecoderLSTM, thus obtaining scores s1, . . . , sn which we will compare to the target sequence x2, . . . , xn+1. We optimize with respect to sum of the cross-entropy loss: pt = softmax(st) ∈ R Vchar ∀t ∈ {1, . . . , n} (14) losschar dec = − Xn t=1 log pt(xt+1) ∈ R (15) Note that when we compute losschar dec for a batch of words, we take the sum (not average) across the entire batch. On each training iteration, we add losschar dec to the loss of the word-based decoder, so that we simultaneously train the word-based model and character-based decoder. Decoding from the Character Decoder At test time, first we produce a translation from our wordbased NMT system in the usual way (e.g. a decoding algorithm like beam search). If the translation contains any tokens, then for each of those positions, we use the word-based decoder’s combined output vector to initialize the CharDecoderLSTM’s initial h0 and c0, then use CharDecoderLSTM to generate a sequence of characters. To generate the sequence of characters, we use the greedy decoding algorithm, which repeatedly chooses the most probable next character, until either the token is produced or we reach a predetermined max length. The algorithm is given below, for a single example (not batched). Algorithm 1 Greedy Decoding Input: Initial states h0, c0 Output: output word generated by the character decoder (doesn’t contain or ) 1: procedure decode greedy 2: output word ← [] 3: current char ← 4: for t = 0, 1, ..., max length − 1 do 5: ht+1, ct+1 ← CharDecoder(current char, ht, ct) . use last predicted character as input 6: st+1 ← Wdecht+1 + bdec . compute scores 7: pt+1 ← softmax(st+1) . compute probabilities 8: current char ← argmaxc pt+1(c) . the most likely next character 9: if current char= then 10: break 11: output word ← output word + [current char] . append this character to output word 12: return output word Implementation At the end of this section, you will train the full NMT system (with character-encoder and characterdecoder). As in the previous assignment, we strongly advise that you first develop the code locally and ensure it does not crash, before attempting to train it on your VM. Finally, make sure that your VM is turned off whenever you are not using it. CS 224n Assignment 5 Page 9 of 11 If your Azure subscription runs out of money your VM will be temporarily locked and inaccessible. If that happens, make a private post on Piazza with your name, email used for Azure, and SUNetID, to request more credits. (a) (2 points) (coding) Write the init function for the CharDecoder module in char decoder.py. Run the following for a non-exhaustive sanity check: python sanity_check.py 2a (b) (3 points) (coding) Write the forward() function in char decoder.py. This function takes input x1, . . . , xn and (h0, c0) (as described in the Forward computation of the character decoder section) and returns s1, . . . , sn and (hn, cn). Run the following for a non-exhaustive sanity check: python sanity_check.py 2b (c) (5 points) (coding) Write the train forward() function in char decoder.py. This function computes losschar dec summed across the whole batch. Hint: Carefully read the documentation for nn.CrossEntropyLoss. Run the following for a non-exhaustive sanity check: python sanity_check.py 2c (d) (7 points) (coding) Write the decode greedy() function in char decoder.py to implement the algorithm decode greedy. Note that although Algorithm 1 is described for a single example, your implementation must work over a batch. Algorithm 1 also indicates that you should break when you reach the token, but in the batched case you might find it more convenient to complete all max length steps of the for-loop, then truncate the output words afterwards. Run the following for a non-exhaustive sanity check: python sanity_check.py 2d (e) (3 points) (coding) Once you have thoroughly checked your implementation of the CharDecoder functions (checking much more than just the sanity checks!), it’s time to do the ‘small training run’ check. Confirm that you’re in the proper conda environment and then execute the following command on your local machine to check if your model overfits to a small subset of the training data. sh run.sh train_local_q2 sh run.sh test_local_q2 Running these should take around 10 minutes (but this depends on your local machine). You should observe the average loss go down to near 0 and average perplexity on train and dev set go to 1 during training. Once you run the test, you should observe BLEU score on the test set higher than 99.00. If you don’t observe these things, you probably need to go back to debug! Important: Make sure not to modify the output file (outputs/test outputs local q2.txt) generated by the code – you need this to be included when you run the submission script. (f) (6 points) (coding) Now that we’ve implemented both the character-based encoder and the characterbased decoder, it’s finally time to train the full system! Connect to your VM and install necessary packages by running: pip install -r gpu_requirements.txt Once your VM is configured and you are in a tmux session,11 execute: sh run.sh train 11Refer to Practical tips for using VMs for more information on tmux CS 224n Assignment 5 Page 10 of 11 This should take between 8-12 hours to train on the VM, though time may vary depending on your implementation and whether or not the training procedure hits the early stopping criterion. Run your model on the test set using: sh run.sh test and report your test set BLEU score in your assignment write-up. Also ensure that the output file outputs/test outputs.txt is present and unmodified – this will be included in your submission, and we’ll use it to verify your self-reported BLEU score. Given your BLEU score b, here’s how your points will be determined for this sub-problem: BLEU Score Points 0 ≤ b < 21 0 21 ≤ b < 22.5 2 22.5 ≤ b 6 3. Analyzing NMT Systems (8 points) (a) (2 points) (written) The following table shows some of the forms of the Spanish word traducir, which means ‘to translate’.12 Infinitive traducir to translate Present traduzco I translate traduces you translate traduce he or she translates Subjunctive traduzca that I translate traduzcas that you translate Use vocab.json to find (e.g. using grep) which of these six forms are in the word-vocabulary, which consists of the 50,000 most frequent words in the training data for English and for Spanish. Superstrings don’t count (e.g. having traducen in the vocabulary is not a hit for traduce). State which of these six forms occur, and which do not. Explain in one sentence why this is a bad thing for word-based NMT from Spanish to English. Then explain in detail (approximately two sentences) how our new character-aware NMT model may overcome this problem. (b) i. (0.5 points) (written) In Assignments 1 and 2, we investigated word embeddings created via algorithms such a Word2Vec, and found that for these embeddings, semantically similar words are close together in the embedding space. In this exercise, we’ll compare this with the word embeddings constructed using the CharCNN trained in our NMT system. Go to https://projector.tensorflow.org/. The website by default shows data from Word2Vec. Look at the nearest neighbors of the following words (in cosine distance). • financial • neuron • Francisco • naturally • expectation For each word, report the single closest neighbor. For your convenience, for each example take a screenshot of all the nearest words (so you can compare with the CharCNN embeddings). ii. (0.5 points) (written) The TensorFlow embedding projector also allows you to upload your own data – you may find this useful in your projects! 12You can check http://www.spanishdict.com/conjugate/traducir for a more complete table. CS 224n Assignment 5 Page 11 of 11 Download the character-based word embeddings obtained from our implementation of the character-aware NMT model from this link. Navigate to https://projector.tensorflow. org/, select Load Data, and upload the files character-embeddings.txt (the embeddings themselves) and metadata.txt (the words associated with the embeddings). Now look at the nearest neighbors of the same words. Again, report the single closest neighbors and take screenshots for yourself. iii. (3 points) (written) Compare the closest neighbors found by the two methods. Briefly describe what kind of similarity is modeled by Word2Vec. Briefly describe what kind of similarity is modeled by the CharCNN. Explain in detail (2-3 sentences) how the differences in the methodology of Word2Vec and a CharCNN explain the differences you have found. (c) (2 points) (written) As in Assignment 4, we’ll take a look at the outputs of the model that you have trained! The test set translations your model generated in 2(f) should be located in the outputs directory at: outputs/test outputs.txt. We also provided translations from a word-based model from our Assignment 4 model in the file outputs/test outputs a4.txt. Find places where the word-based model produced , and compare to what the characterbased decoder did. Find one example where the character-based decoder produced an acceptable translation in place of , and one example where the character-based decoder produced an incorrect translation in place of . As in Assignment 4, ‘acceptable’ and ‘incorrect’ doesn’t just mean ‘matches or doesn’t match the reference translation’ – use your own judgment (and Google Translate, if necessary). For each of the two examples, you should: 1. Write the source sentence in Spanish. The source sentences are in en es data/test.es. 2. Write the reference English translation of the sentence. The reference translations are in en es data/test.en. 3. Write the English translation generated by the model from Assignment 4. These translations are in outputs/test outputs a4.txt. Underline the you are talking about. 4. Write your character-based model’s English translation. These translations are in outputs/test outputs.txt. Underline the CharDecoder-generated word you are talking about. 5. Indicate whether this is an acceptable or incorrect example. Give a brief possible explanation (one sentence) for why the character-based model performed this way. Submission Instructions You will submit this assignment on GradeScope as two submissions – one for Assignment 5 [coding] and another for Assignment 5 [written]: 1. Verify that the following files exist at these specified paths within your assignment directory: • outputs/test outputs.txt • outputs/test outputs local q1.txt • outputs/test outputs local q2.txt 2. Run the collect submission.sh script to produce your assignment5.zip file. 3. Upload your assignment5.zip file to GradeScope to Assignment 5 [coding]. 4. Check that the public autograder tests passed correctly. In particular, check that the BLEU scores calculated for parts 1(l), 2(e) and 2(f) match what you expect, because points will be awarded based on these autograder-computed numbers. 5. Upload your written solutions to GradeScope to Assignment 5 [written]. Tag it properly!

More products