Harshita Khandelwal commited on
Commit ·
f10578e
1
Parent(s): aaa8ff9
checkpoints
Browse files- checkpoint-0/config.json +74 -0
- checkpoint-0/generation_config.json +13 -0
- checkpoint-0/merges.txt +0 -0
- checkpoint-0/pytorch_model.bin +3 -0
- checkpoint-0/special_tokens_map.json +51 -0
- checkpoint-0/tokenizer_config.json +63 -0
- checkpoint-0/vocab.json +0 -0
- checkpoint-1/config.json +74 -0
- checkpoint-1/generation_config.json +13 -0
- checkpoint-1/merges.txt +0 -0
- checkpoint-1/pytorch_model.bin +3 -0
- checkpoint-1/special_tokens_map.json +51 -0
- checkpoint-1/tokenizer_config.json +63 -0
- checkpoint-1/vocab.json +0 -0
- checkpoint-2/config.json +74 -0
- checkpoint-2/generation_config.json +13 -0
- checkpoint-2/merges.txt +0 -0
- checkpoint-2/pytorch_model.bin +3 -0
- checkpoint-2/special_tokens_map.json +51 -0
- checkpoint-2/tokenizer_config.json +63 -0
- checkpoint-2/vocab.json +0 -0
- checkpoint-3/config.json +74 -0
- checkpoint-3/generation_config.json +13 -0
- checkpoint-3/merges.txt +0 -0
- checkpoint-3/pytorch_model.bin +3 -0
- checkpoint-3/special_tokens_map.json +51 -0
- checkpoint-3/tokenizer_config.json +63 -0
- checkpoint-3/vocab.json +0 -0
- logs.txt +276 -0
- model_files/config.json +74 -0
- model_files/generation_config.json +13 -0
- model_files/merges.txt +0 -0
- model_files/pytorch_model.bin +3 -0
- model_files/special_tokens_map.json +51 -0
- model_files/tokenizer_config.json +63 -0
- model_files/vocab.json +0 -0
- predictions0.csv +31 -0
- predictions1.csv +31 -0
- predictions2.csv +31 -0
- predictions3.csv +31 -0
checkpoint-0/config.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "facebook/bart-large",
|
| 3 |
+
"activation_dropout": 0.1,
|
| 4 |
+
"activation_function": "gelu",
|
| 5 |
+
"add_bias_logits": false,
|
| 6 |
+
"add_final_layer_norm": false,
|
| 7 |
+
"architectures": [
|
| 8 |
+
"BartForConditionalGeneration"
|
| 9 |
+
],
|
| 10 |
+
"attention_dropout": 0.1,
|
| 11 |
+
"bos_token_id": 0,
|
| 12 |
+
"classif_dropout": 0.1,
|
| 13 |
+
"classifier_dropout": 0.0,
|
| 14 |
+
"d_model": 1024,
|
| 15 |
+
"decoder_attention_heads": 16,
|
| 16 |
+
"decoder_ffn_dim": 4096,
|
| 17 |
+
"decoder_layerdrop": 0.0,
|
| 18 |
+
"decoder_layers": 12,
|
| 19 |
+
"decoder_start_token_id": 2,
|
| 20 |
+
"dropout": 0.1,
|
| 21 |
+
"early_stopping": true,
|
| 22 |
+
"encoder_attention_heads": 16,
|
| 23 |
+
"encoder_ffn_dim": 4096,
|
| 24 |
+
"encoder_layerdrop": 0.0,
|
| 25 |
+
"encoder_layers": 12,
|
| 26 |
+
"eos_token_id": 2,
|
| 27 |
+
"forced_bos_token_id": 0,
|
| 28 |
+
"forced_eos_token_id": 2,
|
| 29 |
+
"gradient_checkpointing": false,
|
| 30 |
+
"id2label": {
|
| 31 |
+
"0": "LABEL_0",
|
| 32 |
+
"1": "LABEL_1",
|
| 33 |
+
"2": "LABEL_2"
|
| 34 |
+
},
|
| 35 |
+
"init_std": 0.02,
|
| 36 |
+
"is_encoder_decoder": true,
|
| 37 |
+
"label2id": {
|
| 38 |
+
"LABEL_0": 0,
|
| 39 |
+
"LABEL_1": 1,
|
| 40 |
+
"LABEL_2": 2
|
| 41 |
+
},
|
| 42 |
+
"max_position_embeddings": 1024,
|
| 43 |
+
"model_type": "bart",
|
| 44 |
+
"no_repeat_ngram_size": 3,
|
| 45 |
+
"normalize_before": false,
|
| 46 |
+
"num_beams": 4,
|
| 47 |
+
"num_hidden_layers": 12,
|
| 48 |
+
"pad_token_id": 1,
|
| 49 |
+
"scale_embedding": false,
|
| 50 |
+
"task_specific_params": {
|
| 51 |
+
"summarization": {
|
| 52 |
+
"length_penalty": 1.0,
|
| 53 |
+
"max_length": 128,
|
| 54 |
+
"min_length": 12,
|
| 55 |
+
"num_beams": 4
|
| 56 |
+
},
|
| 57 |
+
"summarization_cnn": {
|
| 58 |
+
"length_penalty": 2.0,
|
| 59 |
+
"max_length": 142,
|
| 60 |
+
"min_length": 56,
|
| 61 |
+
"num_beams": 4
|
| 62 |
+
},
|
| 63 |
+
"summarization_xsum": {
|
| 64 |
+
"length_penalty": 1.0,
|
| 65 |
+
"max_length": 62,
|
| 66 |
+
"min_length": 11,
|
| 67 |
+
"num_beams": 6
|
| 68 |
+
}
|
| 69 |
+
},
|
| 70 |
+
"torch_dtype": "float32",
|
| 71 |
+
"transformers_version": "4.28.1",
|
| 72 |
+
"use_cache": true,
|
| 73 |
+
"vocab_size": 50265
|
| 74 |
+
}
|
checkpoint-0/generation_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 0,
|
| 4 |
+
"decoder_start_token_id": 2,
|
| 5 |
+
"early_stopping": true,
|
| 6 |
+
"eos_token_id": 2,
|
| 7 |
+
"forced_bos_token_id": 0,
|
| 8 |
+
"forced_eos_token_id": 2,
|
| 9 |
+
"no_repeat_ngram_size": 3,
|
| 10 |
+
"num_beams": 4,
|
| 11 |
+
"pad_token_id": 1,
|
| 12 |
+
"transformers_version": "4.28.1"
|
| 13 |
+
}
|
checkpoint-0/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-0/pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b2839ea234a188f655e378b4491549bb7498abb60d6b4c6dc5480eae8667da55
|
| 3 |
+
size 1625541389
|
checkpoint-0/special_tokens_map.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": true,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"cls_token": {
|
| 10 |
+
"content": "<s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": true,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"eos_token": {
|
| 17 |
+
"content": "</s>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": true,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"mask_token": {
|
| 24 |
+
"content": "<mask>",
|
| 25 |
+
"lstrip": true,
|
| 26 |
+
"normalized": true,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
},
|
| 30 |
+
"pad_token": {
|
| 31 |
+
"content": "<pad>",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": true,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false
|
| 36 |
+
},
|
| 37 |
+
"sep_token": {
|
| 38 |
+
"content": "</s>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": true,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false
|
| 43 |
+
},
|
| 44 |
+
"unk_token": {
|
| 45 |
+
"content": "<unk>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": true,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false
|
| 50 |
+
}
|
| 51 |
+
}
|
checkpoint-0/tokenizer_config.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"bos_token": {
|
| 4 |
+
"__type": "AddedToken",
|
| 5 |
+
"content": "<s>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": true,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false
|
| 10 |
+
},
|
| 11 |
+
"clean_up_tokenization_spaces": true,
|
| 12 |
+
"cls_token": {
|
| 13 |
+
"__type": "AddedToken",
|
| 14 |
+
"content": "<s>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": true,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false
|
| 19 |
+
},
|
| 20 |
+
"eos_token": {
|
| 21 |
+
"__type": "AddedToken",
|
| 22 |
+
"content": "</s>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": true,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false
|
| 27 |
+
},
|
| 28 |
+
"errors": "replace",
|
| 29 |
+
"mask_token": {
|
| 30 |
+
"__type": "AddedToken",
|
| 31 |
+
"content": "<mask>",
|
| 32 |
+
"lstrip": true,
|
| 33 |
+
"normalized": true,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false
|
| 36 |
+
},
|
| 37 |
+
"model_max_length": 1024,
|
| 38 |
+
"pad_token": {
|
| 39 |
+
"__type": "AddedToken",
|
| 40 |
+
"content": "<pad>",
|
| 41 |
+
"lstrip": false,
|
| 42 |
+
"normalized": true,
|
| 43 |
+
"rstrip": false,
|
| 44 |
+
"single_word": false
|
| 45 |
+
},
|
| 46 |
+
"sep_token": {
|
| 47 |
+
"__type": "AddedToken",
|
| 48 |
+
"content": "</s>",
|
| 49 |
+
"lstrip": false,
|
| 50 |
+
"normalized": true,
|
| 51 |
+
"rstrip": false,
|
| 52 |
+
"single_word": false
|
| 53 |
+
},
|
| 54 |
+
"tokenizer_class": "BartTokenizer",
|
| 55 |
+
"unk_token": {
|
| 56 |
+
"__type": "AddedToken",
|
| 57 |
+
"content": "<unk>",
|
| 58 |
+
"lstrip": false,
|
| 59 |
+
"normalized": true,
|
| 60 |
+
"rstrip": false,
|
| 61 |
+
"single_word": false
|
| 62 |
+
}
|
| 63 |
+
}
|
checkpoint-0/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1/config.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "facebook/bart-large",
|
| 3 |
+
"activation_dropout": 0.1,
|
| 4 |
+
"activation_function": "gelu",
|
| 5 |
+
"add_bias_logits": false,
|
| 6 |
+
"add_final_layer_norm": false,
|
| 7 |
+
"architectures": [
|
| 8 |
+
"BartForConditionalGeneration"
|
| 9 |
+
],
|
| 10 |
+
"attention_dropout": 0.1,
|
| 11 |
+
"bos_token_id": 0,
|
| 12 |
+
"classif_dropout": 0.1,
|
| 13 |
+
"classifier_dropout": 0.0,
|
| 14 |
+
"d_model": 1024,
|
| 15 |
+
"decoder_attention_heads": 16,
|
| 16 |
+
"decoder_ffn_dim": 4096,
|
| 17 |
+
"decoder_layerdrop": 0.0,
|
| 18 |
+
"decoder_layers": 12,
|
| 19 |
+
"decoder_start_token_id": 2,
|
| 20 |
+
"dropout": 0.1,
|
| 21 |
+
"early_stopping": true,
|
| 22 |
+
"encoder_attention_heads": 16,
|
| 23 |
+
"encoder_ffn_dim": 4096,
|
| 24 |
+
"encoder_layerdrop": 0.0,
|
| 25 |
+
"encoder_layers": 12,
|
| 26 |
+
"eos_token_id": 2,
|
| 27 |
+
"forced_bos_token_id": 0,
|
| 28 |
+
"forced_eos_token_id": 2,
|
| 29 |
+
"gradient_checkpointing": false,
|
| 30 |
+
"id2label": {
|
| 31 |
+
"0": "LABEL_0",
|
| 32 |
+
"1": "LABEL_1",
|
| 33 |
+
"2": "LABEL_2"
|
| 34 |
+
},
|
| 35 |
+
"init_std": 0.02,
|
| 36 |
+
"is_encoder_decoder": true,
|
| 37 |
+
"label2id": {
|
| 38 |
+
"LABEL_0": 0,
|
| 39 |
+
"LABEL_1": 1,
|
| 40 |
+
"LABEL_2": 2
|
| 41 |
+
},
|
| 42 |
+
"max_position_embeddings": 1024,
|
| 43 |
+
"model_type": "bart",
|
| 44 |
+
"no_repeat_ngram_size": 3,
|
| 45 |
+
"normalize_before": false,
|
| 46 |
+
"num_beams": 4,
|
| 47 |
+
"num_hidden_layers": 12,
|
| 48 |
+
"pad_token_id": 1,
|
| 49 |
+
"scale_embedding": false,
|
| 50 |
+
"task_specific_params": {
|
| 51 |
+
"summarization": {
|
| 52 |
+
"length_penalty": 1.0,
|
| 53 |
+
"max_length": 128,
|
| 54 |
+
"min_length": 12,
|
| 55 |
+
"num_beams": 4
|
| 56 |
+
},
|
| 57 |
+
"summarization_cnn": {
|
| 58 |
+
"length_penalty": 2.0,
|
| 59 |
+
"max_length": 142,
|
| 60 |
+
"min_length": 56,
|
| 61 |
+
"num_beams": 4
|
| 62 |
+
},
|
| 63 |
+
"summarization_xsum": {
|
| 64 |
+
"length_penalty": 1.0,
|
| 65 |
+
"max_length": 62,
|
| 66 |
+
"min_length": 11,
|
| 67 |
+
"num_beams": 6
|
| 68 |
+
}
|
| 69 |
+
},
|
| 70 |
+
"torch_dtype": "float32",
|
| 71 |
+
"transformers_version": "4.28.1",
|
| 72 |
+
"use_cache": true,
|
| 73 |
+
"vocab_size": 50265
|
| 74 |
+
}
|
checkpoint-1/generation_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 0,
|
| 4 |
+
"decoder_start_token_id": 2,
|
| 5 |
+
"early_stopping": true,
|
| 6 |
+
"eos_token_id": 2,
|
| 7 |
+
"forced_bos_token_id": 0,
|
| 8 |
+
"forced_eos_token_id": 2,
|
| 9 |
+
"no_repeat_ngram_size": 3,
|
| 10 |
+
"num_beams": 4,
|
| 11 |
+
"pad_token_id": 1,
|
| 12 |
+
"transformers_version": "4.28.1"
|
| 13 |
+
}
|
checkpoint-1/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-1/pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78172d979d627024c93707b88da2a56981c548eaa03efefa351915f9b9b0dfac
|
| 3 |
+
size 1625541389
|
checkpoint-1/special_tokens_map.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": true,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"cls_token": {
|
| 10 |
+
"content": "<s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": true,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"eos_token": {
|
| 17 |
+
"content": "</s>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": true,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"mask_token": {
|
| 24 |
+
"content": "<mask>",
|
| 25 |
+
"lstrip": true,
|
| 26 |
+
"normalized": true,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
},
|
| 30 |
+
"pad_token": {
|
| 31 |
+
"content": "<pad>",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": true,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false
|
| 36 |
+
},
|
| 37 |
+
"sep_token": {
|
| 38 |
+
"content": "</s>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": true,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false
|
| 43 |
+
},
|
| 44 |
+
"unk_token": {
|
| 45 |
+
"content": "<unk>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": true,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false
|
| 50 |
+
}
|
| 51 |
+
}
|
checkpoint-1/tokenizer_config.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"bos_token": {
|
| 4 |
+
"__type": "AddedToken",
|
| 5 |
+
"content": "<s>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": true,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false
|
| 10 |
+
},
|
| 11 |
+
"clean_up_tokenization_spaces": true,
|
| 12 |
+
"cls_token": {
|
| 13 |
+
"__type": "AddedToken",
|
| 14 |
+
"content": "<s>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": true,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false
|
| 19 |
+
},
|
| 20 |
+
"eos_token": {
|
| 21 |
+
"__type": "AddedToken",
|
| 22 |
+
"content": "</s>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": true,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false
|
| 27 |
+
},
|
| 28 |
+
"errors": "replace",
|
| 29 |
+
"mask_token": {
|
| 30 |
+
"__type": "AddedToken",
|
| 31 |
+
"content": "<mask>",
|
| 32 |
+
"lstrip": true,
|
| 33 |
+
"normalized": true,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false
|
| 36 |
+
},
|
| 37 |
+
"model_max_length": 1024,
|
| 38 |
+
"pad_token": {
|
| 39 |
+
"__type": "AddedToken",
|
| 40 |
+
"content": "<pad>",
|
| 41 |
+
"lstrip": false,
|
| 42 |
+
"normalized": true,
|
| 43 |
+
"rstrip": false,
|
| 44 |
+
"single_word": false
|
| 45 |
+
},
|
| 46 |
+
"sep_token": {
|
| 47 |
+
"__type": "AddedToken",
|
| 48 |
+
"content": "</s>",
|
| 49 |
+
"lstrip": false,
|
| 50 |
+
"normalized": true,
|
| 51 |
+
"rstrip": false,
|
| 52 |
+
"single_word": false
|
| 53 |
+
},
|
| 54 |
+
"tokenizer_class": "BartTokenizer",
|
| 55 |
+
"unk_token": {
|
| 56 |
+
"__type": "AddedToken",
|
| 57 |
+
"content": "<unk>",
|
| 58 |
+
"lstrip": false,
|
| 59 |
+
"normalized": true,
|
| 60 |
+
"rstrip": false,
|
| 61 |
+
"single_word": false
|
| 62 |
+
}
|
| 63 |
+
}
|
checkpoint-1/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-2/config.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "facebook/bart-large",
|
| 3 |
+
"activation_dropout": 0.1,
|
| 4 |
+
"activation_function": "gelu",
|
| 5 |
+
"add_bias_logits": false,
|
| 6 |
+
"add_final_layer_norm": false,
|
| 7 |
+
"architectures": [
|
| 8 |
+
"BartForConditionalGeneration"
|
| 9 |
+
],
|
| 10 |
+
"attention_dropout": 0.1,
|
| 11 |
+
"bos_token_id": 0,
|
| 12 |
+
"classif_dropout": 0.1,
|
| 13 |
+
"classifier_dropout": 0.0,
|
| 14 |
+
"d_model": 1024,
|
| 15 |
+
"decoder_attention_heads": 16,
|
| 16 |
+
"decoder_ffn_dim": 4096,
|
| 17 |
+
"decoder_layerdrop": 0.0,
|
| 18 |
+
"decoder_layers": 12,
|
| 19 |
+
"decoder_start_token_id": 2,
|
| 20 |
+
"dropout": 0.1,
|
| 21 |
+
"early_stopping": true,
|
| 22 |
+
"encoder_attention_heads": 16,
|
| 23 |
+
"encoder_ffn_dim": 4096,
|
| 24 |
+
"encoder_layerdrop": 0.0,
|
| 25 |
+
"encoder_layers": 12,
|
| 26 |
+
"eos_token_id": 2,
|
| 27 |
+
"forced_bos_token_id": 0,
|
| 28 |
+
"forced_eos_token_id": 2,
|
| 29 |
+
"gradient_checkpointing": false,
|
| 30 |
+
"id2label": {
|
| 31 |
+
"0": "LABEL_0",
|
| 32 |
+
"1": "LABEL_1",
|
| 33 |
+
"2": "LABEL_2"
|
| 34 |
+
},
|
| 35 |
+
"init_std": 0.02,
|
| 36 |
+
"is_encoder_decoder": true,
|
| 37 |
+
"label2id": {
|
| 38 |
+
"LABEL_0": 0,
|
| 39 |
+
"LABEL_1": 1,
|
| 40 |
+
"LABEL_2": 2
|
| 41 |
+
},
|
| 42 |
+
"max_position_embeddings": 1024,
|
| 43 |
+
"model_type": "bart",
|
| 44 |
+
"no_repeat_ngram_size": 3,
|
| 45 |
+
"normalize_before": false,
|
| 46 |
+
"num_beams": 4,
|
| 47 |
+
"num_hidden_layers": 12,
|
| 48 |
+
"pad_token_id": 1,
|
| 49 |
+
"scale_embedding": false,
|
| 50 |
+
"task_specific_params": {
|
| 51 |
+
"summarization": {
|
| 52 |
+
"length_penalty": 1.0,
|
| 53 |
+
"max_length": 128,
|
| 54 |
+
"min_length": 12,
|
| 55 |
+
"num_beams": 4
|
| 56 |
+
},
|
| 57 |
+
"summarization_cnn": {
|
| 58 |
+
"length_penalty": 2.0,
|
| 59 |
+
"max_length": 142,
|
| 60 |
+
"min_length": 56,
|
| 61 |
+
"num_beams": 4
|
| 62 |
+
},
|
| 63 |
+
"summarization_xsum": {
|
| 64 |
+
"length_penalty": 1.0,
|
| 65 |
+
"max_length": 62,
|
| 66 |
+
"min_length": 11,
|
| 67 |
+
"num_beams": 6
|
| 68 |
+
}
|
| 69 |
+
},
|
| 70 |
+
"torch_dtype": "float32",
|
| 71 |
+
"transformers_version": "4.28.1",
|
| 72 |
+
"use_cache": true,
|
| 73 |
+
"vocab_size": 50265
|
| 74 |
+
}
|
checkpoint-2/generation_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 0,
|
| 4 |
+
"decoder_start_token_id": 2,
|
| 5 |
+
"early_stopping": true,
|
| 6 |
+
"eos_token_id": 2,
|
| 7 |
+
"forced_bos_token_id": 0,
|
| 8 |
+
"forced_eos_token_id": 2,
|
| 9 |
+
"no_repeat_ngram_size": 3,
|
| 10 |
+
"num_beams": 4,
|
| 11 |
+
"pad_token_id": 1,
|
| 12 |
+
"transformers_version": "4.28.1"
|
| 13 |
+
}
|
checkpoint-2/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-2/pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:beb4cea57a87d89052854c0248f2389eeec14a5476966e3f60b21e22e5bbb0ee
|
| 3 |
+
size 1625541389
|
checkpoint-2/special_tokens_map.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": true,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"cls_token": {
|
| 10 |
+
"content": "<s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": true,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"eos_token": {
|
| 17 |
+
"content": "</s>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": true,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"mask_token": {
|
| 24 |
+
"content": "<mask>",
|
| 25 |
+
"lstrip": true,
|
| 26 |
+
"normalized": true,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
},
|
| 30 |
+
"pad_token": {
|
| 31 |
+
"content": "<pad>",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": true,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false
|
| 36 |
+
},
|
| 37 |
+
"sep_token": {
|
| 38 |
+
"content": "</s>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": true,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false
|
| 43 |
+
},
|
| 44 |
+
"unk_token": {
|
| 45 |
+
"content": "<unk>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": true,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false
|
| 50 |
+
}
|
| 51 |
+
}
|
checkpoint-2/tokenizer_config.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"bos_token": {
|
| 4 |
+
"__type": "AddedToken",
|
| 5 |
+
"content": "<s>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": true,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false
|
| 10 |
+
},
|
| 11 |
+
"clean_up_tokenization_spaces": true,
|
| 12 |
+
"cls_token": {
|
| 13 |
+
"__type": "AddedToken",
|
| 14 |
+
"content": "<s>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": true,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false
|
| 19 |
+
},
|
| 20 |
+
"eos_token": {
|
| 21 |
+
"__type": "AddedToken",
|
| 22 |
+
"content": "</s>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": true,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false
|
| 27 |
+
},
|
| 28 |
+
"errors": "replace",
|
| 29 |
+
"mask_token": {
|
| 30 |
+
"__type": "AddedToken",
|
| 31 |
+
"content": "<mask>",
|
| 32 |
+
"lstrip": true,
|
| 33 |
+
"normalized": true,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false
|
| 36 |
+
},
|
| 37 |
+
"model_max_length": 1024,
|
| 38 |
+
"pad_token": {
|
| 39 |
+
"__type": "AddedToken",
|
| 40 |
+
"content": "<pad>",
|
| 41 |
+
"lstrip": false,
|
| 42 |
+
"normalized": true,
|
| 43 |
+
"rstrip": false,
|
| 44 |
+
"single_word": false
|
| 45 |
+
},
|
| 46 |
+
"sep_token": {
|
| 47 |
+
"__type": "AddedToken",
|
| 48 |
+
"content": "</s>",
|
| 49 |
+
"lstrip": false,
|
| 50 |
+
"normalized": true,
|
| 51 |
+
"rstrip": false,
|
| 52 |
+
"single_word": false
|
| 53 |
+
},
|
| 54 |
+
"tokenizer_class": "BartTokenizer",
|
| 55 |
+
"unk_token": {
|
| 56 |
+
"__type": "AddedToken",
|
| 57 |
+
"content": "<unk>",
|
| 58 |
+
"lstrip": false,
|
| 59 |
+
"normalized": true,
|
| 60 |
+
"rstrip": false,
|
| 61 |
+
"single_word": false
|
| 62 |
+
}
|
| 63 |
+
}
|
checkpoint-2/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-3/config.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "facebook/bart-large",
|
| 3 |
+
"activation_dropout": 0.1,
|
| 4 |
+
"activation_function": "gelu",
|
| 5 |
+
"add_bias_logits": false,
|
| 6 |
+
"add_final_layer_norm": false,
|
| 7 |
+
"architectures": [
|
| 8 |
+
"BartForConditionalGeneration"
|
| 9 |
+
],
|
| 10 |
+
"attention_dropout": 0.1,
|
| 11 |
+
"bos_token_id": 0,
|
| 12 |
+
"classif_dropout": 0.1,
|
| 13 |
+
"classifier_dropout": 0.0,
|
| 14 |
+
"d_model": 1024,
|
| 15 |
+
"decoder_attention_heads": 16,
|
| 16 |
+
"decoder_ffn_dim": 4096,
|
| 17 |
+
"decoder_layerdrop": 0.0,
|
| 18 |
+
"decoder_layers": 12,
|
| 19 |
+
"decoder_start_token_id": 2,
|
| 20 |
+
"dropout": 0.1,
|
| 21 |
+
"early_stopping": true,
|
| 22 |
+
"encoder_attention_heads": 16,
|
| 23 |
+
"encoder_ffn_dim": 4096,
|
| 24 |
+
"encoder_layerdrop": 0.0,
|
| 25 |
+
"encoder_layers": 12,
|
| 26 |
+
"eos_token_id": 2,
|
| 27 |
+
"forced_bos_token_id": 0,
|
| 28 |
+
"forced_eos_token_id": 2,
|
| 29 |
+
"gradient_checkpointing": false,
|
| 30 |
+
"id2label": {
|
| 31 |
+
"0": "LABEL_0",
|
| 32 |
+
"1": "LABEL_1",
|
| 33 |
+
"2": "LABEL_2"
|
| 34 |
+
},
|
| 35 |
+
"init_std": 0.02,
|
| 36 |
+
"is_encoder_decoder": true,
|
| 37 |
+
"label2id": {
|
| 38 |
+
"LABEL_0": 0,
|
| 39 |
+
"LABEL_1": 1,
|
| 40 |
+
"LABEL_2": 2
|
| 41 |
+
},
|
| 42 |
+
"max_position_embeddings": 1024,
|
| 43 |
+
"model_type": "bart",
|
| 44 |
+
"no_repeat_ngram_size": 3,
|
| 45 |
+
"normalize_before": false,
|
| 46 |
+
"num_beams": 4,
|
| 47 |
+
"num_hidden_layers": 12,
|
| 48 |
+
"pad_token_id": 1,
|
| 49 |
+
"scale_embedding": false,
|
| 50 |
+
"task_specific_params": {
|
| 51 |
+
"summarization": {
|
| 52 |
+
"length_penalty": 1.0,
|
| 53 |
+
"max_length": 128,
|
| 54 |
+
"min_length": 12,
|
| 55 |
+
"num_beams": 4
|
| 56 |
+
},
|
| 57 |
+
"summarization_cnn": {
|
| 58 |
+
"length_penalty": 2.0,
|
| 59 |
+
"max_length": 142,
|
| 60 |
+
"min_length": 56,
|
| 61 |
+
"num_beams": 4
|
| 62 |
+
},
|
| 63 |
+
"summarization_xsum": {
|
| 64 |
+
"length_penalty": 1.0,
|
| 65 |
+
"max_length": 62,
|
| 66 |
+
"min_length": 11,
|
| 67 |
+
"num_beams": 6
|
| 68 |
+
}
|
| 69 |
+
},
|
| 70 |
+
"torch_dtype": "float32",
|
| 71 |
+
"transformers_version": "4.28.1",
|
| 72 |
+
"use_cache": true,
|
| 73 |
+
"vocab_size": 50265
|
| 74 |
+
}
|
checkpoint-3/generation_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 0,
|
| 4 |
+
"decoder_start_token_id": 2,
|
| 5 |
+
"early_stopping": true,
|
| 6 |
+
"eos_token_id": 2,
|
| 7 |
+
"forced_bos_token_id": 0,
|
| 8 |
+
"forced_eos_token_id": 2,
|
| 9 |
+
"no_repeat_ngram_size": 3,
|
| 10 |
+
"num_beams": 4,
|
| 11 |
+
"pad_token_id": 1,
|
| 12 |
+
"transformers_version": "4.28.1"
|
| 13 |
+
}
|
checkpoint-3/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
checkpoint-3/pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4fbd7a80e21ded3d07f2fb4854e917cd5657d7ce3433fbd98faf0a8d7556eead
|
| 3 |
+
size 1625541389
|
checkpoint-3/special_tokens_map.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": true,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"cls_token": {
|
| 10 |
+
"content": "<s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": true,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"eos_token": {
|
| 17 |
+
"content": "</s>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": true,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"mask_token": {
|
| 24 |
+
"content": "<mask>",
|
| 25 |
+
"lstrip": true,
|
| 26 |
+
"normalized": true,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
},
|
| 30 |
+
"pad_token": {
|
| 31 |
+
"content": "<pad>",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": true,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false
|
| 36 |
+
},
|
| 37 |
+
"sep_token": {
|
| 38 |
+
"content": "</s>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": true,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false
|
| 43 |
+
},
|
| 44 |
+
"unk_token": {
|
| 45 |
+
"content": "<unk>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": true,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false
|
| 50 |
+
}
|
| 51 |
+
}
|
checkpoint-3/tokenizer_config.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"bos_token": {
|
| 4 |
+
"__type": "AddedToken",
|
| 5 |
+
"content": "<s>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": true,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false
|
| 10 |
+
},
|
| 11 |
+
"clean_up_tokenization_spaces": true,
|
| 12 |
+
"cls_token": {
|
| 13 |
+
"__type": "AddedToken",
|
| 14 |
+
"content": "<s>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": true,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false
|
| 19 |
+
},
|
| 20 |
+
"eos_token": {
|
| 21 |
+
"__type": "AddedToken",
|
| 22 |
+
"content": "</s>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": true,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false
|
| 27 |
+
},
|
| 28 |
+
"errors": "replace",
|
| 29 |
+
"mask_token": {
|
| 30 |
+
"__type": "AddedToken",
|
| 31 |
+
"content": "<mask>",
|
| 32 |
+
"lstrip": true,
|
| 33 |
+
"normalized": true,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false
|
| 36 |
+
},
|
| 37 |
+
"model_max_length": 1024,
|
| 38 |
+
"pad_token": {
|
| 39 |
+
"__type": "AddedToken",
|
| 40 |
+
"content": "<pad>",
|
| 41 |
+
"lstrip": false,
|
| 42 |
+
"normalized": true,
|
| 43 |
+
"rstrip": false,
|
| 44 |
+
"single_word": false
|
| 45 |
+
},
|
| 46 |
+
"sep_token": {
|
| 47 |
+
"__type": "AddedToken",
|
| 48 |
+
"content": "</s>",
|
| 49 |
+
"lstrip": false,
|
| 50 |
+
"normalized": true,
|
| 51 |
+
"rstrip": false,
|
| 52 |
+
"single_word": false
|
| 53 |
+
},
|
| 54 |
+
"tokenizer_class": "BartTokenizer",
|
| 55 |
+
"unk_token": {
|
| 56 |
+
"__type": "AddedToken",
|
| 57 |
+
"content": "<unk>",
|
| 58 |
+
"lstrip": false,
|
| 59 |
+
"normalized": true,
|
| 60 |
+
"rstrip": false,
|
| 61 |
+
"single_word": false
|
| 62 |
+
}
|
| 63 |
+
}
|
checkpoint-3/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
logs.txt
ADDED
|
@@ -0,0 +1,276 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[16:26:19] [Model]: Loading facebook/bart-large... finetune_BART.py:148
|
| 2 |
+
|
| 3 |
+
[Data]: Reading data... finetune_BART.py:153
|
| 4 |
+
|
| 5 |
+
FULL Dataset: (15000, 2)
|
| 6 |
+
TRAIN Dataset: (14970, 2)
|
| 7 |
+
TEST Dataset: (30, 2)
|
| 8 |
+
|
| 9 |
+
[Initiating Fine Tuning]... finetune_BART.py:211
|
| 10 |
+
|
| 11 |
+
Training Status
|
| 12 |
+
+---------------------------------------------------------------------------+
|
| 13 |
+
|Epoch | Steps | Loss |
|
| 14 |
+
|------+-------+------------------------------------------------------------|
|
| 15 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 16 |
+
+---------------------------------------------------------------------------+
|
| 17 |
+
[16:26:29] [Saving Model]... finetune_BART.py:273
|
| 18 |
+
|
| 19 |
+
Training Status
|
| 20 |
+
+---------------------------------------------------------------------------+
|
| 21 |
+
|Epoch | Steps | Loss |
|
| 22 |
+
|------+-------+------------------------------------------------------------|
|
| 23 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 24 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 25 |
+
+---------------------------------------------------------------------------+
|
| 26 |
+
[16:33:19] [Saving Model]... finetune_BART.py:273
|
| 27 |
+
|
| 28 |
+
Training Status
|
| 29 |
+
+---------------------------------------------------------------------------+
|
| 30 |
+
|Epoch | Steps | Loss |
|
| 31 |
+
|------+-------+------------------------------------------------------------|
|
| 32 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 33 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 34 |
+
| 0 | 1000 | tensor(0.9976, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 35 |
+
+---------------------------------------------------------------------------+
|
| 36 |
+
[16:40:08] [Saving Model]... finetune_BART.py:273
|
| 37 |
+
|
| 38 |
+
Training Status
|
| 39 |
+
+---------------------------------------------------------------------------+
|
| 40 |
+
|Epoch | Steps | Loss |
|
| 41 |
+
|------+-------+------------------------------------------------------------|
|
| 42 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 43 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 44 |
+
| 0 | 1000 | tensor(0.9976, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 45 |
+
| 0 | 1500 | tensor(0.8507, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 46 |
+
+---------------------------------------------------------------------------+
|
| 47 |
+
[16:46:56] [Saving Model]... finetune_BART.py:273
|
| 48 |
+
|
| 49 |
+
[16:51:58] [Initiating Validation]... finetune_BART.py:215
|
| 50 |
+
|
| 51 |
+
Completed 0
|
| 52 |
+
loss: tensor(0.8231, device='cuda:1')
|
| 53 |
+
Training Status
|
| 54 |
+
+---------------------------------------------------------------------------+
|
| 55 |
+
|Epoch | Steps | Loss |
|
| 56 |
+
|------+-------+------------------------------------------------------------|
|
| 57 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 58 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 59 |
+
| 0 | 1000 | tensor(0.9976, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 60 |
+
| 0 | 1500 | tensor(0.8507, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 61 |
+
| 1 | 0 | tensor(0.8176, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 62 |
+
+---------------------------------------------------------------------------+
|
| 63 |
+
[16:52:26] [Saving Model]... finetune_BART.py:273
|
| 64 |
+
|
| 65 |
+
Training Status
|
| 66 |
+
+---------------------------------------------------------------------------+
|
| 67 |
+
|Epoch | Steps | Loss |
|
| 68 |
+
|------+-------+------------------------------------------------------------|
|
| 69 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 70 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 71 |
+
| 0 | 1000 | tensor(0.9976, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 72 |
+
| 0 | 1500 | tensor(0.8507, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 73 |
+
| 1 | 0 | tensor(0.8176, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 74 |
+
| 1 | 500 | tensor(0.8230, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 75 |
+
+---------------------------------------------------------------------------+
|
| 76 |
+
[16:59:15] [Saving Model]... finetune_BART.py:273
|
| 77 |
+
|
| 78 |
+
Training Status
|
| 79 |
+
+---------------------------------------------------------------------------+
|
| 80 |
+
|Epoch | Steps | Loss |
|
| 81 |
+
|------+-------+------------------------------------------------------------|
|
| 82 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 83 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 84 |
+
| 0 | 1000 | tensor(0.9976, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 85 |
+
| 0 | 1500 | tensor(0.8507, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 86 |
+
| 1 | 0 | tensor(0.8176, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 87 |
+
| 1 | 500 | tensor(0.8230, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 88 |
+
| 1 | 1000 | tensor(0.6640, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 89 |
+
+---------------------------------------------------------------------------+
|
| 90 |
+
[17:06:03] [Saving Model]... finetune_BART.py:273
|
| 91 |
+
|
| 92 |
+
Training Status
|
| 93 |
+
+---------------------------------------------------------------------------+
|
| 94 |
+
|Epoch | Steps | Loss |
|
| 95 |
+
|------+-------+------------------------------------------------------------|
|
| 96 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 97 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 98 |
+
| 0 | 1000 | tensor(0.9976, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 99 |
+
| 0 | 1500 | tensor(0.8507, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 100 |
+
| 1 | 0 | tensor(0.8176, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 101 |
+
| 1 | 500 | tensor(0.8230, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 102 |
+
| 1 | 1000 | tensor(0.6640, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 103 |
+
| 1 | 1500 | tensor(0.6753, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 104 |
+
+---------------------------------------------------------------------------+
|
| 105 |
+
[17:12:52] [Saving Model]... finetune_BART.py:273
|
| 106 |
+
|
| 107 |
+
[17:17:54] [Initiating Validation]... finetune_BART.py:215
|
| 108 |
+
|
| 109 |
+
Completed 0
|
| 110 |
+
loss: tensor(0.6080, device='cuda:1')
|
| 111 |
+
Training Status
|
| 112 |
+
+---------------------------------------------------------------------------+
|
| 113 |
+
|Epoch | Steps | Loss |
|
| 114 |
+
|------+-------+------------------------------------------------------------|
|
| 115 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 116 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 117 |
+
| 0 | 1000 | tensor(0.9976, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 118 |
+
| 0 | 1500 | tensor(0.8507, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 119 |
+
| 1 | 0 | tensor(0.8176, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 120 |
+
| 1 | 500 | tensor(0.8230, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 121 |
+
| 1 | 1000 | tensor(0.6640, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 122 |
+
| 1 | 1500 | tensor(0.6753, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 123 |
+
| 2 | 0 | tensor(0.6484, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 124 |
+
+---------------------------------------------------------------------------+
|
| 125 |
+
[17:18:22] [Saving Model]... finetune_BART.py:273
|
| 126 |
+
|
| 127 |
+
Training Status
|
| 128 |
+
+---------------------------------------------------------------------------+
|
| 129 |
+
|Epoch | Steps | Loss |
|
| 130 |
+
|------+-------+------------------------------------------------------------|
|
| 131 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 132 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 133 |
+
| 0 | 1000 | tensor(0.9976, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 134 |
+
| 0 | 1500 | tensor(0.8507, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 135 |
+
| 1 | 0 | tensor(0.8176, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 136 |
+
| 1 | 500 | tensor(0.8230, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 137 |
+
| 1 | 1000 | tensor(0.6640, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 138 |
+
| 1 | 1500 | tensor(0.6753, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 139 |
+
| 2 | 0 | tensor(0.6484, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 140 |
+
| 2 | 500 | tensor(0.5900, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 141 |
+
+---------------------------------------------------------------------------+
|
| 142 |
+
[17:25:11] [Saving Model]... finetune_BART.py:273
|
| 143 |
+
|
| 144 |
+
Training Status
|
| 145 |
+
+---------------------------------------------------------------------------+
|
| 146 |
+
|Epoch | Steps | Loss |
|
| 147 |
+
|------+-------+------------------------------------------------------------|
|
| 148 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 149 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 150 |
+
| 0 | 1000 | tensor(0.9976, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 151 |
+
| 0 | 1500 | tensor(0.8507, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 152 |
+
| 1 | 0 | tensor(0.8176, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 153 |
+
| 1 | 500 | tensor(0.8230, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 154 |
+
| 1 | 1000 | tensor(0.6640, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 155 |
+
| 1 | 1500 | tensor(0.6753, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 156 |
+
| 2 | 0 | tensor(0.6484, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 157 |
+
| 2 | 500 | tensor(0.5900, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 158 |
+
| 2 | 1000 | tensor(0.6267, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 159 |
+
+---------------------------------------------------------------------------+
|
| 160 |
+
[17:32:00] [Saving Model]... finetune_BART.py:273
|
| 161 |
+
|
| 162 |
+
Training Status
|
| 163 |
+
+---------------------------------------------------------------------------+
|
| 164 |
+
|Epoch | Steps | Loss |
|
| 165 |
+
|------+-------+------------------------------------------------------------|
|
| 166 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 167 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 168 |
+
| 0 | 1000 | tensor(0.9976, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 169 |
+
| 0 | 1500 | tensor(0.8507, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 170 |
+
| 1 | 0 | tensor(0.8176, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 171 |
+
| 1 | 500 | tensor(0.8230, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 172 |
+
| 1 | 1000 | tensor(0.6640, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 173 |
+
| 1 | 1500 | tensor(0.6753, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 174 |
+
| 2 | 0 | tensor(0.6484, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 175 |
+
| 2 | 500 | tensor(0.5900, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 176 |
+
| 2 | 1000 | tensor(0.6267, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 177 |
+
| 2 | 1500 | tensor(0.6388, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 178 |
+
+---------------------------------------------------------------------------+
|
| 179 |
+
[17:38:48] [Saving Model]... finetune_BART.py:273
|
| 180 |
+
|
| 181 |
+
[17:43:50] [Initiating Validation]... finetune_BART.py:215
|
| 182 |
+
|
| 183 |
+
Completed 0
|
| 184 |
+
loss: tensor(0.5172, device='cuda:1')
|
| 185 |
+
Training Status
|
| 186 |
+
+---------------------------------------------------------------------------+
|
| 187 |
+
|Epoch | Steps | Loss |
|
| 188 |
+
|------+-------+------------------------------------------------------------|
|
| 189 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 190 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 191 |
+
| 0 | 1000 | tensor(0.9976, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 192 |
+
| 0 | 1500 | tensor(0.8507, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 193 |
+
| 1 | 0 | tensor(0.8176, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 194 |
+
| 1 | 500 | tensor(0.8230, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 195 |
+
| 1 | 1000 | tensor(0.6640, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 196 |
+
| 1 | 1500 | tensor(0.6753, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 197 |
+
| 2 | 0 | tensor(0.6484, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 198 |
+
| 2 | 500 | tensor(0.5900, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 199 |
+
| 2 | 1000 | tensor(0.6267, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 200 |
+
| 2 | 1500 | tensor(0.6388, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 201 |
+
| 3 | 0 | tensor(0.6125, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 202 |
+
+---------------------------------------------------------------------------+
|
| 203 |
+
[17:44:17] [Saving Model]... finetune_BART.py:273
|
| 204 |
+
|
| 205 |
+
Training Status
|
| 206 |
+
+---------------------------------------------------------------------------+
|
| 207 |
+
|Epoch | Steps | Loss |
|
| 208 |
+
|------+-------+------------------------------------------------------------|
|
| 209 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 210 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 211 |
+
| 0 | 1000 | tensor(0.9976, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 212 |
+
| 0 | 1500 | tensor(0.8507, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 213 |
+
| 1 | 0 | tensor(0.8176, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 214 |
+
| 1 | 500 | tensor(0.8230, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 215 |
+
| 1 | 1000 | tensor(0.6640, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 216 |
+
| 1 | 1500 | tensor(0.6753, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 217 |
+
| 2 | 0 | tensor(0.6484, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 218 |
+
| 2 | 500 | tensor(0.5900, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 219 |
+
| 2 | 1000 | tensor(0.6267, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 220 |
+
| 2 | 1500 | tensor(0.6388, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 221 |
+
| 3 | 0 | tensor(0.6125, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 222 |
+
| 3 | 500 | tensor(0.5723, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 223 |
+
+---------------------------------------------------------------------------+
|
| 224 |
+
[17:51:04] [Saving Model]... finetune_BART.py:273
|
| 225 |
+
|
| 226 |
+
Training Status
|
| 227 |
+
+---------------------------------------------------------------------------+
|
| 228 |
+
|Epoch | Steps | Loss |
|
| 229 |
+
|------+-------+------------------------------------------------------------|
|
| 230 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 231 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 232 |
+
| 0 | 1000 | tensor(0.9976, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 233 |
+
| 0 | 1500 | tensor(0.8507, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 234 |
+
| 1 | 0 | tensor(0.8176, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 235 |
+
| 1 | 500 | tensor(0.8230, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 236 |
+
| 1 | 1000 | tensor(0.6640, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 237 |
+
| 1 | 1500 | tensor(0.6753, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 238 |
+
| 2 | 0 | tensor(0.6484, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 239 |
+
| 2 | 500 | tensor(0.5900, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 240 |
+
| 2 | 1000 | tensor(0.6267, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 241 |
+
| 2 | 1500 | tensor(0.6388, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 242 |
+
| 3 | 0 | tensor(0.6125, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 243 |
+
| 3 | 500 | tensor(0.5723, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 244 |
+
| 3 | 1000 | tensor(0.6208, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 245 |
+
+---------------------------------------------------------------------------+
|
| 246 |
+
[17:57:53] [Saving Model]... finetune_BART.py:273
|
| 247 |
+
|
| 248 |
+
Training Status
|
| 249 |
+
+---------------------------------------------------------------------------+
|
| 250 |
+
|Epoch | Steps | Loss |
|
| 251 |
+
|------+-------+------------------------------------------------------------|
|
| 252 |
+
| 0 | 0 | tensor(7.2968, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 253 |
+
| 0 | 500 | tensor(1.2839, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 254 |
+
| 0 | 1000 | tensor(0.9976, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 255 |
+
| 0 | 1500 | tensor(0.8507, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 256 |
+
| 1 | 0 | tensor(0.8176, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 257 |
+
| 1 | 500 | tensor(0.8230, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 258 |
+
| 1 | 1000 | tensor(0.6640, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 259 |
+
| 1 | 1500 | tensor(0.6753, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 260 |
+
| 2 | 0 | tensor(0.6484, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 261 |
+
| 2 | 500 | tensor(0.5900, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 262 |
+
| 2 | 1000 | tensor(0.6267, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 263 |
+
| 2 | 1500 | tensor(0.6388, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 264 |
+
| 3 | 0 | tensor(0.6125, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 265 |
+
| 3 | 500 | tensor(0.5723, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 266 |
+
| 3 | 1000 | tensor(0.6208, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 267 |
+
| 3 | 1500 | tensor(0.6263, device='cuda:1', grad_fn=<NllLossBackward0>)|
|
| 268 |
+
+---------------------------------------------------------------------------+
|
| 269 |
+
[18:04:41] [Saving Model]... finetune_BART.py:273
|
| 270 |
+
|
| 271 |
+
[18:09:42] [Initiating Validation]... finetune_BART.py:215
|
| 272 |
+
|
| 273 |
+
Completed 0
|
| 274 |
+
loss: tensor(0.5050, device='cuda:1')
|
| 275 |
+
[18:10:09] [Saving Model]... finetune_BART.py:220
|
| 276 |
+
|
model_files/config.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "facebook/bart-large",
|
| 3 |
+
"activation_dropout": 0.1,
|
| 4 |
+
"activation_function": "gelu",
|
| 5 |
+
"add_bias_logits": false,
|
| 6 |
+
"add_final_layer_norm": false,
|
| 7 |
+
"architectures": [
|
| 8 |
+
"BartForConditionalGeneration"
|
| 9 |
+
],
|
| 10 |
+
"attention_dropout": 0.1,
|
| 11 |
+
"bos_token_id": 0,
|
| 12 |
+
"classif_dropout": 0.1,
|
| 13 |
+
"classifier_dropout": 0.0,
|
| 14 |
+
"d_model": 1024,
|
| 15 |
+
"decoder_attention_heads": 16,
|
| 16 |
+
"decoder_ffn_dim": 4096,
|
| 17 |
+
"decoder_layerdrop": 0.0,
|
| 18 |
+
"decoder_layers": 12,
|
| 19 |
+
"decoder_start_token_id": 2,
|
| 20 |
+
"dropout": 0.1,
|
| 21 |
+
"early_stopping": true,
|
| 22 |
+
"encoder_attention_heads": 16,
|
| 23 |
+
"encoder_ffn_dim": 4096,
|
| 24 |
+
"encoder_layerdrop": 0.0,
|
| 25 |
+
"encoder_layers": 12,
|
| 26 |
+
"eos_token_id": 2,
|
| 27 |
+
"forced_bos_token_id": 0,
|
| 28 |
+
"forced_eos_token_id": 2,
|
| 29 |
+
"gradient_checkpointing": false,
|
| 30 |
+
"id2label": {
|
| 31 |
+
"0": "LABEL_0",
|
| 32 |
+
"1": "LABEL_1",
|
| 33 |
+
"2": "LABEL_2"
|
| 34 |
+
},
|
| 35 |
+
"init_std": 0.02,
|
| 36 |
+
"is_encoder_decoder": true,
|
| 37 |
+
"label2id": {
|
| 38 |
+
"LABEL_0": 0,
|
| 39 |
+
"LABEL_1": 1,
|
| 40 |
+
"LABEL_2": 2
|
| 41 |
+
},
|
| 42 |
+
"max_position_embeddings": 1024,
|
| 43 |
+
"model_type": "bart",
|
| 44 |
+
"no_repeat_ngram_size": 3,
|
| 45 |
+
"normalize_before": false,
|
| 46 |
+
"num_beams": 4,
|
| 47 |
+
"num_hidden_layers": 12,
|
| 48 |
+
"pad_token_id": 1,
|
| 49 |
+
"scale_embedding": false,
|
| 50 |
+
"task_specific_params": {
|
| 51 |
+
"summarization": {
|
| 52 |
+
"length_penalty": 1.0,
|
| 53 |
+
"max_length": 128,
|
| 54 |
+
"min_length": 12,
|
| 55 |
+
"num_beams": 4
|
| 56 |
+
},
|
| 57 |
+
"summarization_cnn": {
|
| 58 |
+
"length_penalty": 2.0,
|
| 59 |
+
"max_length": 142,
|
| 60 |
+
"min_length": 56,
|
| 61 |
+
"num_beams": 4
|
| 62 |
+
},
|
| 63 |
+
"summarization_xsum": {
|
| 64 |
+
"length_penalty": 1.0,
|
| 65 |
+
"max_length": 62,
|
| 66 |
+
"min_length": 11,
|
| 67 |
+
"num_beams": 6
|
| 68 |
+
}
|
| 69 |
+
},
|
| 70 |
+
"torch_dtype": "float32",
|
| 71 |
+
"transformers_version": "4.28.1",
|
| 72 |
+
"use_cache": true,
|
| 73 |
+
"vocab_size": 50265
|
| 74 |
+
}
|
model_files/generation_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 0,
|
| 4 |
+
"decoder_start_token_id": 2,
|
| 5 |
+
"early_stopping": true,
|
| 6 |
+
"eos_token_id": 2,
|
| 7 |
+
"forced_bos_token_id": 0,
|
| 8 |
+
"forced_eos_token_id": 2,
|
| 9 |
+
"no_repeat_ngram_size": 3,
|
| 10 |
+
"num_beams": 4,
|
| 11 |
+
"pad_token_id": 1,
|
| 12 |
+
"transformers_version": "4.28.1"
|
| 13 |
+
}
|
model_files/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model_files/pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a65ccfa59dd9ca76ee394656462d2578d61f6eb62dbee9ea1e1c536f079b4459
|
| 3 |
+
size 1625541389
|
model_files/special_tokens_map.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": true,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"cls_token": {
|
| 10 |
+
"content": "<s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": true,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"eos_token": {
|
| 17 |
+
"content": "</s>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": true,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"mask_token": {
|
| 24 |
+
"content": "<mask>",
|
| 25 |
+
"lstrip": true,
|
| 26 |
+
"normalized": true,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
},
|
| 30 |
+
"pad_token": {
|
| 31 |
+
"content": "<pad>",
|
| 32 |
+
"lstrip": false,
|
| 33 |
+
"normalized": true,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false
|
| 36 |
+
},
|
| 37 |
+
"sep_token": {
|
| 38 |
+
"content": "</s>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": true,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false
|
| 43 |
+
},
|
| 44 |
+
"unk_token": {
|
| 45 |
+
"content": "<unk>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": true,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false
|
| 50 |
+
}
|
| 51 |
+
}
|
model_files/tokenizer_config.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"bos_token": {
|
| 4 |
+
"__type": "AddedToken",
|
| 5 |
+
"content": "<s>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": true,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false
|
| 10 |
+
},
|
| 11 |
+
"clean_up_tokenization_spaces": true,
|
| 12 |
+
"cls_token": {
|
| 13 |
+
"__type": "AddedToken",
|
| 14 |
+
"content": "<s>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": true,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false
|
| 19 |
+
},
|
| 20 |
+
"eos_token": {
|
| 21 |
+
"__type": "AddedToken",
|
| 22 |
+
"content": "</s>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": true,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false
|
| 27 |
+
},
|
| 28 |
+
"errors": "replace",
|
| 29 |
+
"mask_token": {
|
| 30 |
+
"__type": "AddedToken",
|
| 31 |
+
"content": "<mask>",
|
| 32 |
+
"lstrip": true,
|
| 33 |
+
"normalized": true,
|
| 34 |
+
"rstrip": false,
|
| 35 |
+
"single_word": false
|
| 36 |
+
},
|
| 37 |
+
"model_max_length": 1024,
|
| 38 |
+
"pad_token": {
|
| 39 |
+
"__type": "AddedToken",
|
| 40 |
+
"content": "<pad>",
|
| 41 |
+
"lstrip": false,
|
| 42 |
+
"normalized": true,
|
| 43 |
+
"rstrip": false,
|
| 44 |
+
"single_word": false
|
| 45 |
+
},
|
| 46 |
+
"sep_token": {
|
| 47 |
+
"__type": "AddedToken",
|
| 48 |
+
"content": "</s>",
|
| 49 |
+
"lstrip": false,
|
| 50 |
+
"normalized": true,
|
| 51 |
+
"rstrip": false,
|
| 52 |
+
"single_word": false
|
| 53 |
+
},
|
| 54 |
+
"tokenizer_class": "BartTokenizer",
|
| 55 |
+
"unk_token": {
|
| 56 |
+
"__type": "AddedToken",
|
| 57 |
+
"content": "<unk>",
|
| 58 |
+
"lstrip": false,
|
| 59 |
+
"normalized": true,
|
| 60 |
+
"rstrip": false,
|
| 61 |
+
"single_word": false
|
| 62 |
+
}
|
| 63 |
+
}
|
model_files/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
predictions0.csv
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
,Input,Generated Text,Actual Text
|
| 2 |
+
0,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: eight,jest,crest,weight."
|
| 3 |
+
1,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: posture,plague,whack,crosser."
|
| 4 |
+
2,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: enough,blew,view,mccollough."
|
| 5 |
+
3,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: crow,wail,tail,throw."
|
| 6 |
+
4,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: deserved,blaze,raise,unnerved."
|
| 7 |
+
5,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: wade,came,claim,lade."
|
| 8 |
+
6,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: earned,deserved,renerved,querned."
|
| 9 |
+
7,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: record,hers,blurs,discord."
|
| 10 |
+
8,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: never,fire,drier,pressure."
|
| 11 |
+
9,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: times,pipe,type,chimes."
|
| 12 |
+
10,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: grave,pansies,grannies,shave."
|
| 13 |
+
11,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: pride,clerk,tuck,hide."
|
| 14 |
+
12,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: deem,wade,jade,seem."
|
| 15 |
+
13,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: foliage,jubilee,family,savage."
|
| 16 |
+
14,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,came,fame,roupily."
|
| 17 |
+
15,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: fault,cord,awed,volt."
|
| 18 |
+
16,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: stream,expired,respired,ream."
|
| 19 |
+
17,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: mistrust,compare,wetware,repast."
|
| 20 |
+
18,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: earned,scene,clean,burned."
|
| 21 |
+
19,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: tract,charms,alms,fact."
|
| 22 |
+
20,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: lily,sale,trail,pretty."
|
| 23 |
+
21,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: early,man,scan,girly."
|
| 24 |
+
22,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: ship,blew,queue,flip."
|
| 25 |
+
23,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: fire,quell,smell,flier."
|
| 26 |
+
24,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: pride,yet,wet,wide."
|
| 27 |
+
25,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: wail,faint,feint,trail."
|
| 28 |
+
26,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: coats,sale,sail,anecdotes."
|
| 29 |
+
27,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: cord,bad,cad,flawed."
|
| 30 |
+
28,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: enough,scar,czar,untough."
|
| 31 |
+
29,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: patch,faint,taint,satchwough.Peel.Awareness is never enough to quell jubilee.(Drums,crowns,gowns,stunts)bracingly-climbs.Bayonet.[pansies]darling.jubilee.coats.glides.determine.ashore.bait.flay.scratch.drums.nose.cradle.halt.cellar.blew.captures.vows.plaids.blaze.charms.swipe.blacklist.master's.ship.slide.mannerly.thought.quell.save.battle.shadow.guard.lurk.brand.draw.bolt.shave.flag.allow.timescale.Lord,spouse,maim.Bounce.disgust.rattle.deem.Fantasy.Cordially,whackaw,straddle.Theoristily,squire.Glide.incompetience.posture.joys.Tether.","Generate a set of 4 words with the rhyme pattern ABBA: crow,record,explored,throw."
|
predictions1.csv
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
,Input,Generated Text,Actual Text
|
| 2 |
+
0,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: eight,jest,crest,weight."
|
| 3 |
+
1,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: posture,plague,whack,crosser."
|
| 4 |
+
2,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: enough,blew,view,mccollough."
|
| 5 |
+
3,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: crow,wail,tail,throw."
|
| 6 |
+
4,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: deserved,blaze,raise,unnerved."
|
| 7 |
+
5,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: wade,came,claim,lade."
|
| 8 |
+
6,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: earned,deserved,renerved,querned."
|
| 9 |
+
7,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: record,hers,blurs,discord."
|
| 10 |
+
8,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: never,fire,drier,pressure."
|
| 11 |
+
9,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: times,pipe,type,chimes."
|
| 12 |
+
10,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: grave,pansies,grannies,shave."
|
| 13 |
+
11,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: pride,clerk,tuck,hide."
|
| 14 |
+
12,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: deem,wade,jade,seem."
|
| 15 |
+
13,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: foliage,jubilee,family,savage."
|
| 16 |
+
14,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,came,fame,roupily."
|
| 17 |
+
15,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: fault,cord,awed,volt."
|
| 18 |
+
16,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: stream,expired,respired,ream."
|
| 19 |
+
17,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: mistrust,compare,wetware,repast."
|
| 20 |
+
18,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: earned,scene,clean,burned."
|
| 21 |
+
19,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: tract,charms,alms,fact."
|
| 22 |
+
20,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: lily,sale,trail,pretty."
|
| 23 |
+
21,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: early,man,scan,girly."
|
| 24 |
+
22,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: ship,blew,queue,flip."
|
| 25 |
+
23,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: fire,quell,smell,flier."
|
| 26 |
+
24,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: pride,yet,wet,wide."
|
| 27 |
+
25,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: wail,faint,feint,trail."
|
| 28 |
+
26,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: coats,sale,sail,anecdotes."
|
| 29 |
+
27,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: cord,bad,cad,flawed."
|
| 30 |
+
28,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: enough,scar,czar,untough."
|
| 31 |
+
29,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: folk,ferns,gurns,cloak.Awe.Peel.flaw.ashore.peal.stewed.crowns.Drums.drowse.coats.cracow.plaids.harrows.threadbare.black.wade.tackle.shrewd.joke.bloke.choke.bolt.swallow.tockwough.lily-flew.Bay.ship.stroke.smoke.bounce.blew.slack.hood.lipstick.glow.blow.nose.brand.spell.save.cellar.flag.sword.frame.guard.posture.beam.scratch.stream.captures.hip.wave.vows.steam.Lord,queue,squire,whack.Glow.Babble.Flay.Stave.Faintly enough,feast.The blacksmith's quell.Came.thought.bridesmaids.pansies.Kraaling.label.cowhide.handshake.folk.","Generate a set of 4 words with the rhyme pattern ABBA: crow,record,explored,throw."
|
predictions2.csv
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
,Input,Generated Text,Actual Text
|
| 2 |
+
0,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: eight,jest,crest,weight."
|
| 3 |
+
1,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: posture,plague,whack,crosser."
|
| 4 |
+
2,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: enough,blew,view,mccollough."
|
| 5 |
+
3,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: crow,wail,tail,throw."
|
| 6 |
+
4,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: deserved,blaze,raise,unnerved."
|
| 7 |
+
5,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: wade,came,claim,lade."
|
| 8 |
+
6,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: earned,deserved,renerved,querned."
|
| 9 |
+
7,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: record,hers,blurs,discord."
|
| 10 |
+
8,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: never,fire,drier,pressure."
|
| 11 |
+
9,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: times,pipe,type,chimes."
|
| 12 |
+
10,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: grave,pansies,grannies,shave."
|
| 13 |
+
11,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: pride,clerk,tuck,hide."
|
| 14 |
+
12,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: deem,wade,jade,seem."
|
| 15 |
+
13,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: foliage,jubilee,family,savage."
|
| 16 |
+
14,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,came,fame,roupily."
|
| 17 |
+
15,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: fault,cord,awed,volt."
|
| 18 |
+
16,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: stream,expired,respired,ream."
|
| 19 |
+
17,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: mistrust,compare,wetware,repast."
|
| 20 |
+
18,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: earned,scene,clean,burned."
|
| 21 |
+
19,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: tract,charms,alms,fact."
|
| 22 |
+
20,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: lily,sale,trail,pretty."
|
| 23 |
+
21,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: early,man,scan,girly."
|
| 24 |
+
22,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: ship,blew,queue,flip."
|
| 25 |
+
23,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: fire,quell,smell,flier."
|
| 26 |
+
24,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: pride,yet,wet,wide."
|
| 27 |
+
25,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: wail,faint,feint,trail."
|
| 28 |
+
26,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: coats,sale,sail,anecdotes."
|
| 29 |
+
27,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: cord,bad,cad,flawed."
|
| 30 |
+
28,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: enough,scar,czar,untough."
|
| 31 |
+
29,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,ferns,gurns,cozily.Peelmeal.Awedrumble.Drumsplains,nouns,cracowdoze.Kapowtockwough.Lord,hoise,yeast.Bay.flaw. Lord,scance,stewed.(crowns,clowns,croise) Awedum.""charms,""rides,pounds,kraals.Glows. Drums.Froise.blissfully glows.[grave],pasture,priest,prose.Gleam.ashough.Camehough.brides,primes,knows.Theorist.glows.foliage.folk.peregrine,feast,spook.joys.—law. Bay.quell.lily.guard,straddle,forbore.jubilee.brand.ship.black.smoke.drums,rings,comes.label.cellar,whack.flag.badware.cowhide.","Generate a set of 4 words with the rhyme pattern ABBA: crow,record,explored,throw."
|
predictions3.csv
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
,Input,Generated Text,Actual Text
|
| 2 |
+
0,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: eight,jest,crest,weight."
|
| 3 |
+
1,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: posture,plague,whack,crosser."
|
| 4 |
+
2,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: enough,blew,view,mccollough."
|
| 5 |
+
3,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: crow,wail,tail,throw."
|
| 6 |
+
4,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: deserved,blaze,raise,unnerved."
|
| 7 |
+
5,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: wade,came,claim,lade."
|
| 8 |
+
6,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: earned,deserved,renerved,querned."
|
| 9 |
+
7,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: record,hers,blurs,discord."
|
| 10 |
+
8,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: never,fire,drier,pressure."
|
| 11 |
+
9,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: times,pipe,type,chimes."
|
| 12 |
+
10,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: grave,pansies,grannies,shave."
|
| 13 |
+
11,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: pride,clerk,tuck,hide."
|
| 14 |
+
12,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: deem,wade,jade,seem."
|
| 15 |
+
13,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: foliage,jubilee,family,savage."
|
| 16 |
+
14,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,came,fame,roupily."
|
| 17 |
+
15,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: fault,cord,awed,volt."
|
| 18 |
+
16,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: stream,expired,respired,ream."
|
| 19 |
+
17,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: mistrust,compare,wetware,repast."
|
| 20 |
+
18,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: earned,scene,clean,burned."
|
| 21 |
+
19,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: tract,charms,alms,fact."
|
| 22 |
+
20,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: lily,sale,trail,pretty."
|
| 23 |
+
21,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: early,man,scan,girly."
|
| 24 |
+
22,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: ship,blew,queue,flip."
|
| 25 |
+
23,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: fire,quell,smell,flier."
|
| 26 |
+
24,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: pride,yet,wet,wide."
|
| 27 |
+
25,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: wail,faint,feint,trail."
|
| 28 |
+
26,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: coats,sale,sail,anecdotes."
|
| 29 |
+
27,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: cord,bad,cad,flawed."
|
| 30 |
+
28,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: enough,scar,czar,untough."
|
| 31 |
+
29,"Generate a set of 4 words with the rhyme pattern ABBA: <MASK>, <MASK>, <MASK>, <MASK>.","Generate a set of 4 words with the rhyme pattern ABBA: jubilee,plaids,trades,oozily-cozily.Awefully.Peel,lily,cheerfully.Drumspercy.Kraaling.Lord,chivalry,kraaling.(crowns,clowns,froise)cracow.flaw. Lord,sword,screw.Bay.blew.dolling.bloats.hounds.gurns.floored.black.folk.brand.ship.swelter.stake.blow.tockwough.jubilee.brides,slack,brew.hood.ashough.glows.""rudely,""foliage,foodstuff,boozily.Theorist.smoke. Drumspranksters.shrewd.cowhide.label,grosser,forbore.joys.allow.deem.law.guard,maim,cocktail.draw.crowdoze.ride.stream.spell.rave a set of 4 times with the rhyme patterns ABBA: nod,scene,keen,spew.","Generate a set of 4 words with the rhyme pattern ABBA: crow,record,explored,throw."
|