ML Wong commited on
Commit
477927e
1 Parent(s): 082f536

Add summary module

Browse files
.gitignore CHANGED
@@ -1,2 +1,2 @@
1
  *__pycache__*
2
- *pyc
 
1
  *__pycache__*
2
+ *.pyc
app.py CHANGED
@@ -1,8 +1,10 @@
 
1
  import gradio as gr
2
  import os
3
  from npc_bert_models.gradio_demo import *
4
  from npc_bert_models.mlm_module import NpcBertMLM
5
  from npc_bert_models.cls_module import NpcBertCLS
 
6
  import json
7
 
8
 
@@ -72,6 +74,43 @@ class main_window():
72
  btn.click(fn=self.npc_cls.__call__, inputs=inp, outputs=out)
73
  inp.submit(fn=self.npc_cls.__call__, inputs=inp, outputs=out)
74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  with gr.Blocks() as self.interface:
76
  gr.Markdown("""
77
  # Introduction
@@ -94,7 +133,8 @@ class main_window():
94
  This software is provided as is and it is not a clinically validated software. The authors disclaim any responsibility
95
  arising as a consequence from using this demo.
96
  """)
97
- tabs = gr.TabbedInterface([self.mlm_interface, self.cls_interface], tab_names=["Masked Language Model", "Report classification"])
 
98
 
99
  def lauch(self):
100
  self.interface.launch()
 
1
+ from logging import PlaceHolder
2
  import gradio as gr
3
  import os
4
  from npc_bert_models.gradio_demo import *
5
  from npc_bert_models.mlm_module import NpcBertMLM
6
  from npc_bert_models.cls_module import NpcBertCLS
7
+ from npc_bert_models.summary_module import NpcBertGPT2
8
  import json
9
 
10
 
 
74
  btn.click(fn=self.npc_cls.__call__, inputs=inp, outputs=out)
75
  inp.submit(fn=self.npc_cls.__call__, inputs=inp, outputs=out)
76
 
77
+ #! Initialize report conclusion generation
78
+ self.npc_summary = NpcBertGPT2()
79
+ self.npc_summary.load()
80
+
81
+ with gr.Blocks() as self.summary_interface:
82
+ gr.Markdown("""
83
+ # Report conclusion generation
84
+
85
+ In this example we explored how the fine-tunned BERT can aid summarizing the reported items and
86
+ generates a conclusion, which includes providing stages of the written reports.
87
+
88
+ # Disclaimer
89
+
90
+ Again, similar to the last experiement, the examples we list here are mock reports that are created
91
+ with reference to authentic reports and they do not represent any real patients. We essentiall used
92
+ the same reports as the last tab, but cropped away the "conclusion" part which we trian the network
93
+ to generate.
94
+
95
+ """)
96
+
97
+ with gr.Row():
98
+ with gr.Column():
99
+ inp = gr.TextArea(placeholder="Use examples at the bottom to load example text reports.")
100
+ inf = gr.File(file_types=['.txt'], label="Report file (plaintext)", show_label=True, interactive=True)
101
+ inf.upload(fn=self._set_report_file_helper, inputs=inf, outputs=inp)
102
+ inf.change(fn=self._set_report_file_helper, inputs=inf, outputs=inp)
103
+ btn = gr.Button("Run", variant='primary')
104
+
105
+
106
+ with gr.Column():
107
+ out = gr.TextArea(placeholder="Conclusion is generated here", interactive=False)
108
+
109
+ gr.Examples(examples="./report_examples_summary", inputs=inf)
110
+ btn.click(fn=self.npc_summary.__call__, inputs=inp, outputs=out)
111
+ inp.submit(fn=self.npc_summary.__call__, inputs=inp, outputs=out)
112
+
113
+ #! Create tab interface
114
  with gr.Blocks() as self.interface:
115
  gr.Markdown("""
116
  # Introduction
 
133
  This software is provided as is and it is not a clinically validated software. The authors disclaim any responsibility
134
  arising as a consequence from using this demo.
135
  """)
136
+ tabs = gr.TabbedInterface([self.mlm_interface, self.cls_interface, self.summary_interface],
137
+ tab_names=["Masked Language Model", "Report classification", "Report conclusion generation"])
138
 
139
  def lauch(self):
140
  self.interface.launch()
models/npc-bert-gpt2-best/added_tokens.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "[BOS]": 5744
3
+ }
models/npc-bert-gpt2-best/config copy.json ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "EncoderDecoderModel"
4
+ ],
5
+ "decoder": {
6
+ "_name_or_path": "openai-community/gpt2",
7
+ "activation_function": "gelu_new",
8
+ "add_cross_attention": true,
9
+ "architectures": [
10
+ "GPT2LMHeadModel"
11
+ ],
12
+ "attn_pdrop": 0.1,
13
+ "bad_words_ids": null,
14
+ "begin_suppress_tokens": null,
15
+ "bos_token_id": 50256,
16
+ "chunk_size_feed_forward": 0,
17
+ "cross_attention_hidden_size": null,
18
+ "decoder_start_token_id": 5744,
19
+ "diversity_penalty": 0.0,
20
+ "do_sample": false,
21
+ "early_stopping": false,
22
+ "embd_pdrop": 0.1,
23
+ "encoder_no_repeat_ngram_size": 0,
24
+ "eos_token_id": 50256,
25
+ "exponential_decay_length_penalty": null,
26
+ "finetuning_task": null,
27
+ "forced_bos_token_id": null,
28
+ "forced_eos_token_id": null,
29
+ "id2label": {
30
+ "0": "LABEL_0",
31
+ "1": "LABEL_1"
32
+ },
33
+ "initializer_range": 0.02,
34
+ "is_decoder": true,
35
+ "is_encoder_decoder": false,
36
+ "label2id": {
37
+ "LABEL_0": 0,
38
+ "LABEL_1": 1
39
+ },
40
+ "layer_norm_epsilon": 1e-05,
41
+ "length_penalty": 1.0,
42
+ "max_length": 20,
43
+ "min_length": 0,
44
+ "model_type": "gpt2",
45
+ "n_ctx": 1024,
46
+ "n_embd": 768,
47
+ "n_head": 12,
48
+ "n_inner": null,
49
+ "n_layer": 12,
50
+ "n_positions": 1024,
51
+ "no_repeat_ngram_size": 0,
52
+ "num_beam_groups": 1,
53
+ "num_beams": 1,
54
+ "num_return_sequences": 1,
55
+ "output_attentions": false,
56
+ "output_hidden_states": false,
57
+ "output_scores": false,
58
+ "pad_token_id": null,
59
+ "prefix": null,
60
+ "problem_type": null,
61
+ "pruned_heads": {},
62
+ "remove_invalid_values": false,
63
+ "reorder_and_upcast_attn": false,
64
+ "repetition_penalty": 1.0,
65
+ "resid_pdrop": 0.1,
66
+ "return_dict": true,
67
+ "return_dict_in_generate": false,
68
+ "scale_attn_by_inverse_layer_idx": false,
69
+ "scale_attn_weights": true,
70
+ "sep_token_id": null,
71
+ "summary_activation": null,
72
+ "summary_first_dropout": 0.1,
73
+ "summary_proj_to_labels": true,
74
+ "summary_type": "cls_index",
75
+ "summary_use_proj": true,
76
+ "suppress_tokens": null,
77
+ "task_specific_params": {
78
+ "text-generation": {
79
+ "do_sample": true,
80
+ "max_length": 50
81
+ }
82
+ },
83
+ "temperature": 1.0,
84
+ "tf_legacy_loss": false,
85
+ "tie_encoder_decoder": false,
86
+ "tie_word_embeddings": true,
87
+ "tokenizer_class": null,
88
+ "top_k": 50,
89
+ "top_p": 1.0,
90
+ "torch_dtype": null,
91
+ "torchscript": false,
92
+ "typical_p": 1.0,
93
+ "use_bfloat16": false,
94
+ "use_cache": true,
95
+ "vocab_size": 50257
96
+ },
97
+ "decoder_start_token_id": 2,
98
+ "encoder": {
99
+ "_name_or_path": "gradio_demo/models/npc-bert-cls",
100
+ "add_cross_attention": false,
101
+ "architectures": [
102
+ "BertForSequenceClassification"
103
+ ],
104
+ "attention_probs_dropout_prob": 0.1,
105
+ "bad_words_ids": null,
106
+ "begin_suppress_tokens": null,
107
+ "bos_token_id": 2,
108
+ "chunk_size_feed_forward": 0,
109
+ "classifier_dropout": null,
110
+ "cross_attention_hidden_size": null,
111
+ "decoder_start_token_id": null,
112
+ "diversity_penalty": 0.0,
113
+ "do_sample": false,
114
+ "early_stopping": false,
115
+ "encoder_no_repeat_ngram_size": 0,
116
+ "eos_token_id": 1,
117
+ "exponential_decay_length_penalty": null,
118
+ "finetuning_task": null,
119
+ "forced_bos_token_id": null,
120
+ "forced_eos_token_id": null,
121
+ "hidden_act": "gelu",
122
+ "hidden_dropout_prob": 0.1,
123
+ "hidden_size": 768,
124
+ "id2label": {
125
+ "0": "Benign/Healthy",
126
+ "1": "NPC",
127
+ "2": "Unknown/Out of Domain"
128
+ },
129
+ "initializer_range": 0.02,
130
+ "intermediate_size": 3072,
131
+ "is_decoder": false,
132
+ "is_encoder_decoder": false,
133
+ "label2id": {
134
+ "Benign/Healthy": 0,
135
+ "NPC": 1,
136
+ "Unknown/Out of Domain": 2
137
+ },
138
+ "layer_norm_eps": 1e-12,
139
+ "length_penalty": 1.0,
140
+ "max_length": 20,
141
+ "max_position_embeddings": 512,
142
+ "min_length": 0,
143
+ "model_type": "bert-generation",
144
+ "no_repeat_ngram_size": 0,
145
+ "num_attention_heads": 12,
146
+ "num_beam_groups": 1,
147
+ "num_beams": 1,
148
+ "num_hidden_layers": 12,
149
+ "num_return_sequences": 1,
150
+ "output_attentions": false,
151
+ "output_hidden_states": false,
152
+ "output_scores": false,
153
+ "pad_token_id": 0,
154
+ "position_embedding_type": "absolute",
155
+ "prefix": null,
156
+ "problem_type": "single_label_classification",
157
+ "pruned_heads": {},
158
+ "remove_invalid_values": false,
159
+ "repetition_penalty": 1.0,
160
+ "return_dict": true,
161
+ "return_dict_in_generate": false,
162
+ "sep_token_id": null,
163
+ "suppress_tokens": null,
164
+ "task_specific_params": null,
165
+ "temperature": 1.0,
166
+ "tf_legacy_loss": false,
167
+ "tie_encoder_decoder": false,
168
+ "tie_word_embeddings": true,
169
+ "tokenizer_class": null,
170
+ "top_k": 50,
171
+ "top_p": 1.0,
172
+ "torch_dtype": "float32",
173
+ "torchscript": false,
174
+ "type_vocab_size": 2,
175
+ "typical_p": 1.0,
176
+ "use_bfloat16": false,
177
+ "use_cache": true,
178
+ "vocab_size": 30522
179
+ },
180
+ "is_encoder_decoder": true,
181
+ "model_type": "encoder-decoder",
182
+ "pad_token_id": 0,
183
+ "torch_dtype": "float32",
184
+ "transformers_version": "4.37.2",
185
+ "vocab_size": 50257
186
+ }
models/npc-bert-gpt2-best/config.json ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "EncoderDecoderModel"
4
+ ],
5
+ "decoder": {
6
+ "_name_or_path": "openai-community/gpt2",
7
+ "activation_function": "gelu_new",
8
+ "add_cross_attention": true,
9
+ "architectures": [
10
+ "GPT2LMHeadModel"
11
+ ],
12
+ "attn_pdrop": 0.1,
13
+ "bad_words_ids": null,
14
+ "begin_suppress_tokens": null,
15
+ "bos_token_id": 50256,
16
+ "chunk_size_feed_forward": 0,
17
+ "cross_attention_hidden_size": null,
18
+ "decoder_start_token_id": 5744,
19
+ "diversity_penalty": 0.0,
20
+ "do_sample": false,
21
+ "early_stopping": false,
22
+ "embd_pdrop": 0.1,
23
+ "encoder_no_repeat_ngram_size": 0,
24
+ "eos_token_id": 50256,
25
+ "exponential_decay_length_penalty": null,
26
+ "finetuning_task": null,
27
+ "forced_bos_token_id": null,
28
+ "forced_eos_token_id": null,
29
+ "id2label": {
30
+ "0": "LABEL_0",
31
+ "1": "LABEL_1"
32
+ },
33
+ "initializer_range": 0.02,
34
+ "is_decoder": true,
35
+ "is_encoder_decoder": false,
36
+ "label2id": {
37
+ "LABEL_0": 0,
38
+ "LABEL_1": 1
39
+ },
40
+ "layer_norm_epsilon": 1e-05,
41
+ "length_penalty": 1.0,
42
+ "max_length": 20,
43
+ "min_length": 0,
44
+ "model_type": "gpt2",
45
+ "n_ctx": 1024,
46
+ "n_embd": 768,
47
+ "n_head": 12,
48
+ "n_inner": null,
49
+ "n_layer": 12,
50
+ "n_positions": 1024,
51
+ "no_repeat_ngram_size": 0,
52
+ "num_beam_groups": 1,
53
+ "num_beams": 1,
54
+ "num_return_sequences": 1,
55
+ "output_attentions": false,
56
+ "output_hidden_states": false,
57
+ "output_scores": false,
58
+ "pad_token_id": null,
59
+ "prefix": null,
60
+ "problem_type": null,
61
+ "pruned_heads": {},
62
+ "remove_invalid_values": false,
63
+ "reorder_and_upcast_attn": false,
64
+ "repetition_penalty": 1.0,
65
+ "resid_pdrop": 0.1,
66
+ "return_dict": true,
67
+ "return_dict_in_generate": false,
68
+ "scale_attn_by_inverse_layer_idx": false,
69
+ "scale_attn_weights": true,
70
+ "sep_token_id": null,
71
+ "summary_activation": null,
72
+ "summary_first_dropout": 0.1,
73
+ "summary_proj_to_labels": true,
74
+ "summary_type": "cls_index",
75
+ "summary_use_proj": true,
76
+ "suppress_tokens": null,
77
+ "task_specific_params": {
78
+ "text-generation": {
79
+ "do_sample": true,
80
+ "max_length": 50
81
+ }
82
+ },
83
+ "temperature": 1.0,
84
+ "tf_legacy_loss": false,
85
+ "tie_encoder_decoder": false,
86
+ "tie_word_embeddings": true,
87
+ "tokenizer_class": null,
88
+ "top_k": 50,
89
+ "top_p": 1.0,
90
+ "torch_dtype": null,
91
+ "torchscript": false,
92
+ "typical_p": 1.0,
93
+ "use_bfloat16": false,
94
+ "use_cache": true,
95
+ "vocab_size": 50257
96
+ },
97
+ "decoder_start_token_id": 2,
98
+ "encoder": {
99
+ "_name_or_path": "gradio_demo/models/npc-bert-cls",
100
+ "add_cross_attention": false,
101
+ "architectures": [
102
+ "BertForSequenceClassification"
103
+ ],
104
+ "attention_probs_dropout_prob": 0.1,
105
+ "bad_words_ids": null,
106
+ "begin_suppress_tokens": null,
107
+ "bos_token_id": 2,
108
+ "chunk_size_feed_forward": 0,
109
+ "classifier_dropout": null,
110
+ "cross_attention_hidden_size": null,
111
+ "decoder_start_token_id": null,
112
+ "diversity_penalty": 0.0,
113
+ "do_sample": false,
114
+ "early_stopping": false,
115
+ "encoder_no_repeat_ngram_size": 0,
116
+ "eos_token_id": 1,
117
+ "exponential_decay_length_penalty": null,
118
+ "finetuning_task": null,
119
+ "forced_bos_token_id": null,
120
+ "forced_eos_token_id": null,
121
+ "hidden_act": "gelu",
122
+ "hidden_dropout_prob": 0.1,
123
+ "hidden_size": 768,
124
+ "id2label": {
125
+ "0": "Benign/Healthy",
126
+ "1": "NPC",
127
+ "2": "Unknown/Out of Domain"
128
+ },
129
+ "initializer_range": 0.02,
130
+ "intermediate_size": 3072,
131
+ "is_decoder": false,
132
+ "is_encoder_decoder": false,
133
+ "label2id": {
134
+ "Benign/Healthy": 0,
135
+ "NPC": 1,
136
+ "Unknown/Out of Domain": 2
137
+ },
138
+ "layer_norm_eps": 1e-12,
139
+ "length_penalty": 1.0,
140
+ "max_length": 20,
141
+ "max_position_embeddings": 512,
142
+ "min_length": 0,
143
+ "model_type": "bert-generation",
144
+ "no_repeat_ngram_size": 0,
145
+ "num_attention_heads": 12,
146
+ "num_beam_groups": 1,
147
+ "num_beams": 1,
148
+ "num_hidden_layers": 12,
149
+ "num_return_sequences": 1,
150
+ "output_attentions": false,
151
+ "output_hidden_states": false,
152
+ "output_scores": false,
153
+ "pad_token_id": 0,
154
+ "position_embedding_type": "absolute",
155
+ "prefix": null,
156
+ "problem_type": "single_label_classification",
157
+ "pruned_heads": {},
158
+ "remove_invalid_values": false,
159
+ "repetition_penalty": 1.0,
160
+ "return_dict": true,
161
+ "return_dict_in_generate": false,
162
+ "sep_token_id": null,
163
+ "suppress_tokens": null,
164
+ "task_specific_params": null,
165
+ "temperature": 1.0,
166
+ "tf_legacy_loss": false,
167
+ "tie_encoder_decoder": false,
168
+ "tie_word_embeddings": true,
169
+ "tokenizer_class": null,
170
+ "top_k": 50,
171
+ "top_p": 1.0,
172
+ "torch_dtype": "float32",
173
+ "torchscript": false,
174
+ "type_vocab_size": 2,
175
+ "typical_p": 1.0,
176
+ "use_bfloat16": false,
177
+ "use_cache": true,
178
+ "vocab_size": 30522
179
+ },
180
+ "is_encoder_decoder": true,
181
+ "model_type": "encoder-decoder",
182
+ "pad_token_id": 0,
183
+ "torch_dtype": "float32",
184
+ "transformers_version": "4.37.2",
185
+ "vocab_size": 50257
186
+ }
models/npc-bert-gpt2-best/generation_config copy.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 50256,
4
+ "decoder_start_token_id": 5744,
5
+ "eos_token_id": 50256,
6
+ "transformers_version": "4.37.2"
7
+ }
models/npc-bert-gpt2-best/generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 50256,
4
+ "decoder_start_token_id": 5744,
5
+ "eos_token_id": 50256,
6
+ "transformers_version": "4.37.2"
7
+ }
models/npc-bert-gpt2-best/model copy.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:015b17858751faf1b6d610a288bd5eb8179543e1925ff7a10a5a24a256ccd562
3
+ size 1046838512
models/npc-bert-gpt2-best/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:015b17858751faf1b6d610a288bd5eb8179543e1925ff7a10a5a24a256ccd562
3
+ size 1046838512
models/npc-bert-gpt2-best/special_tokens_map.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "[BOS]",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "cls_token": {
10
+ "content": "[CLS]",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "eos_token": {
17
+ "content": "[SEP]",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "mask_token": {
24
+ "content": "[MASK]",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "pad_token": {
31
+ "content": "[PAD]",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ },
37
+ "sep_token": {
38
+ "content": "[SEP]",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false
43
+ },
44
+ "unk_token": {
45
+ "content": "[UNK]",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false
50
+ }
51
+ }
models/npc-bert-gpt2-best/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
models/npc-bert-gpt2-best/tokenizer_config.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "3": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "4": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ },
43
+ "5744": {
44
+ "content": "[BOS]",
45
+ "lstrip": false,
46
+ "normalized": false,
47
+ "rstrip": false,
48
+ "single_word": false,
49
+ "special": true
50
+ }
51
+ },
52
+ "bos_token": "[BOS]",
53
+ "clean_up_tokenization_spaces": true,
54
+ "cls_token": "[CLS]",
55
+ "do_basic_tokenize": true,
56
+ "do_lower_case": true,
57
+ "eos_token": "[SEP]",
58
+ "mask_token": "[MASK]",
59
+ "model_max_length": 1000000000000000019884624838656,
60
+ "never_split": null,
61
+ "pad_token": "[PAD]",
62
+ "sep_token": "[SEP]",
63
+ "strip_accents": null,
64
+ "tokenize_chinese_chars": true,
65
+ "tokenizer_class": "BertTokenizer",
66
+ "unk_token": "[UNK]"
67
+ }
models/npc-bert-gpt2-best/vocab.txt ADDED
@@ -0,0 +1,5744 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [PAD]
2
+ [UNK]
3
+ [CLS]
4
+ [SEP]
5
+ [MASK]
6
+ "
7
+ %
8
+ &
9
+ '
10
+ (
11
+ )
12
+ *
13
+ +
14
+ ,
15
+ -
16
+ .
17
+ /
18
+ 0
19
+ 1
20
+ 2
21
+ 3
22
+ 4
23
+ 5
24
+ 6
25
+ 7
26
+ 8
27
+ 9
28
+ :
29
+ ;
30
+ <
31
+ =
32
+ >
33
+ ?
34
+ [
35
+ \
36
+ a
37
+ b
38
+ c
39
+ d
40
+ e
41
+ f
42
+ g
43
+ h
44
+ i
45
+ j
46
+ k
47
+ l
48
+ m
49
+ n
50
+ o
51
+ p
52
+ q
53
+ r
54
+ s
55
+ t
56
+ u
57
+ v
58
+ w
59
+ x
60
+ y
61
+ z
62
+ ~
63
+ ×
64
+
65
+ ##e
66
+ ##m
67
+ ##a
68
+ ##i
69
+ ##n
70
+ ##g
71
+ ##c
72
+ ##r
73
+ ##l
74
+ ##x
75
+ ##d
76
+ ##o
77
+ ##s
78
+ ##u
79
+ ##t
80
+ ##p
81
+ ##y
82
+ ##h
83
+ ##×
84
+ ##2
85
+ ##f
86
+ ##v
87
+ ##3
88
+ ##1
89
+ ##0
90
+ ##5
91
+ ##z
92
+ ##b
93
+ ##7
94
+ ##4
95
+ ##q
96
+ ##k
97
+ ##w
98
+ ##6
99
+ ##9
100
+ ##8
101
+ ##j
102
+ ##he
103
+ the
104
+ ##al
105
+ ##ar
106
+ ##as
107
+ ##re
108
+ ##er
109
+ ##on
110
+ ##in
111
+ in
112
+ ##nd
113
+ and
114
+ ##es
115
+ ##or
116
+ ##at
117
+ no
118
+ ##ary
119
+ of
120
+ ##ion
121
+ ##us
122
+ ##it
123
+ ##id
124
+ ##ph
125
+ ##en
126
+ ##ic
127
+ ##aryn
128
+ ##pharyn
129
+ ##tas
130
+ ##an
131
+ ##opharyn
132
+ is
133
+ ##ec
134
+ ##os
135
+ are
136
+ ##ge
137
+ there
138
+ ##ter
139
+ nod
140
+ me
141
+ ##um
142
+ le
143
+ ##ed
144
+ ##ou
145
+ ##ig
146
+ ##le
147
+ nas
148
+ ##ing
149
+ ##ul
150
+ metas
151
+ re
152
+ ##igh
153
+ ##ft
154
+ ##ight
155
+ ##geal
156
+ ##ent
157
+ inv
158
+ left
159
+ ##ith
160
+ with
161
+ right
162
+ nasopharyn
163
+ ##is
164
+ tum
165
+ ##om
166
+ ##tr
167
+ ##our
168
+ ##ly
169
+ tumour
170
+ to
171
+ or
172
+ ##il
173
+ nec
174
+ ##ri
175
+ nodes
176
+ neck
177
+ sid
178
+ ##ve
179
+ ##per
180
+ ##oid
181
+ metastas
182
+ ##cl
183
+ metastases
184
+ ex
185
+ ##ab
186
+ up
187
+ pos
188
+ ##all
189
+ t1
190
+ ##ular
191
+ un
192
+ ##ial
193
+ side
194
+ con
195
+ ##able
196
+ ##ark
197
+ upper
198
+ t1w
199
+ ##ol
200
+ ##ior
201
+ ##rem
202
+ ##arkable
203
+ ##eral
204
+ unrem
205
+ unremarkable
206
+ ##ow
207
+ ##ad
208
+ ##ous
209
+ th
210
+ sp
211
+ par
212
+ car
213
+ ##nal
214
+ ch
215
+ nasopharynx
216
+ ext
217
+ ##oss
218
+ ##ug
219
+ ##if
220
+ ##oma
221
+ ##ac
222
+ ##inus
223
+ sinus
224
+ invas
225
+ ##ain
226
+ invasion
227
+ al
228
+ ##ateral
229
+ ax
230
+ invol
231
+ ##av
232
+ axial
233
+ ##ant
234
+ nasopharyngeal
235
+ ##tat
236
+ ##ast
237
+ ##tatic
238
+ metastatic
239
+ ##ut
240
+ ##terior
241
+ ##ist
242
+ sm
243
+ small
244
+ ##cin
245
+ carcin
246
+ carcinoma
247
+ t2
248
+ jug
249
+ cor
250
+ ##ternal
251
+ foss
252
+ fossa
253
+ ##usion
254
+ ##th
255
+ jugular
256
+ inf
257
+ internal
258
+ on
259
+ cav
260
+ for
261
+ ##por
262
+ ##ase
263
+ ##res
264
+ reg
265
+ coron
266
+ coronal
267
+ int
268
+ ##rim
269
+ sc
270
+ nodal
271
+ prim
272
+ primary
273
+ region
274
+ ##ding
275
+ ##tery
276
+ posterior
277
+ ##am
278
+ chain
279
+ wh
280
+ ##ur
281
+ ##cc
282
+ ##ilateral
283
+ into
284
+ ##ens
285
+ not
286
+ he
287
+ ##ical
288
+ dist
289
+ ##ate
290
+ ##opharynx
291
+ distant
292
+ ptery
293
+ pteryg
294
+ retr
295
+ mid
296
+ ##dent
297
+ ##opharyngeal
298
+ ##ied
299
+ ident
300
+ identif
301
+ ##ich
302
+ which
303
+ identified
304
+ retropharyngeal
305
+ bilateral
306
+ scan
307
+ cl
308
+ sec
309
+ ##sp
310
+ ##vel
311
+ ear
312
+ ##ue
313
+ head
314
+ level
315
+ ##her
316
+ bon
317
+ de
318
+ hy
319
+ but
320
+ mri
321
+ ##ther
322
+ base
323
+ ##ot
324
+ ##ges
325
+ involv
326
+ extens
327
+ ##ine
328
+ ##ull
329
+ ##erv
330
+ ##tion
331
+ ##ax
332
+ para
333
+ ##ures
334
+ st
335
+ parapharyn
336
+ ##ity
337
+ ##ir
338
+ parapharyngeal
339
+ en
340
+ foram
341
+ ##iv
342
+ ##ag
343
+ contr
344
+ ab
345
+ ##ud
346
+ contrast
347
+ ##end
348
+ cr
349
+ ##pic
350
+ ##ervical
351
+ nasal
352
+ ##ym
353
+ pr
354
+ cervical
355
+ ##fin
356
+ extend
357
+ su
358
+ ##ation
359
+ post
360
+ fat
361
+ ##age
362
+ ##op
363
+ ##clusion
364
+ conclusion
365
+ pre
366
+ ##port
367
+ report
368
+ ##ite
369
+ wall
370
+ sk
371
+ ##ment
372
+ skull
373
+ ##so
374
+ also
375
+ defin
376
+ cavity
377
+ be
378
+ can
379
+ ##omin
380
+ an
381
+ ##ition
382
+ ii
383
+ ##dition
384
+ lym
385
+ lymph
386
+ hyp
387
+ ##ious
388
+ ##clud
389
+ ##and
390
+ sus
391
+ involve
392
+ ap
393
+ ##hn
394
+ ##ening
395
+ ##ern
396
+ cavern
397
+ involving
398
+ cavernous
399
+ other
400
+ ##que
401
+ suspic
402
+ definite
403
+ ##ory
404
+ tec
405
+ ##hni
406
+ techni
407
+ ##iss
408
+ oropharynx
409
+ technique
410
+ ##out
411
+ extension
412
+ foramen
413
+ ##spir
414
+ t2spir
415
+ ##astoid
416
+ ##bit
417
+ ##orm
418
+ ##itt
419
+ cliv
420
+ ##ff
421
+ eff
422
+ acc
423
+ without
424
+ orbit
425
+ cran
426
+ bo
427
+ ##arge
428
+ node
429
+ fin
430
+ effusion
431
+ early
432
+ suspicious
433
+ finding
434
+ canal
435
+ bones
436
+ t2w
437
+ noted
438
+ extends
439
+ ##cluded
440
+ stage
441
+ findings
442
+ mus
443
+ ##alat
444
+ ##uc
445
+ low
446
+ ##im
447
+ sinuses
448
+ ##ib
449
+ ##hen
450
+ pterygoid
451
+ ##mpor
452
+ ##mporal
453
+ sphen
454
+ ##ond
455
+ aj
456
+ ajcc
457
+ lower
458
+ uic
459
+ uicc
460
+ ##tions
461
+ edition
462
+ ##otid
463
+ ##ording
464
+ according
465
+ meas
466
+ sphenoid
467
+ ##dle
468
+ middle
469
+ ##alatine
470
+ fiss
471
+ second
472
+ ##ong
473
+ infr
474
+ sag
475
+ ##ick
476
+ ##ang
477
+ thick
478
+ ##ittal
479
+ sagittal
480
+ muc
481
+ thor
482
+ mastoid
483
+ regions
484
+ at
485
+ ##atemporal
486
+ infratemporal
487
+ ##gest
488
+ included
489
+ thorax
490
+ ##ep
491
+ tumours
492
+ sat
493
+ ##uration
494
+ hypopharynx
495
+ saturation
496
+ tri
497
+ thickening
498
+ triang
499
+ sections
500
+ mucos
501
+ ##anc
502
+ clivus
503
+ bul
504
+ ##ive
505
+ ##ormal
506
+ walls
507
+ mil
508
+ crani
509
+ mild
510
+ mucosal
511
+ ##ill
512
+ abut
513
+ ##opalatine
514
+ ##etr
515
+ ##asal
516
+ sig
517
+ paran
518
+ ad
519
+ ##ure
520
+ cranium
521
+ paranasal
522
+ ##ob
523
+ chan
524
+ ##ver
525
+ non
526
+ ##spec
527
+ triangle
528
+ pterygopalatine
529
+ sh
530
+ ##un
531
+ ##large
532
+ enlarge
533
+ ##m0
534
+ along
535
+ ##cles
536
+ muscles
537
+ ##ia
538
+ np
539
+ ##oo
540
+ max
541
+ ##low
542
+ enlarged
543
+ both
544
+ as
545
+ ##oc
546
+ sub
547
+ ver
548
+ lateral
549
+ npc
550
+ roo
551
+ roof
552
+ promin
553
+ ##ific
554
+ app
555
+ bulk
556
+ prominent
557
+ ##te
558
+ involvement
559
+ note
560
+ ##illary
561
+ ##spect
562
+ aspect
563
+ ##pl
564
+ signal
565
+ sided
566
+ ##ap
567
+ ##cm
568
+ lar
569
+ spac
570
+ petr
571
+ levels
572
+ ind
573
+ se
574
+ hyper
575
+ parotid
576
+ fe
577
+ li
578
+ this
579
+ ##eter
580
+ ##inate
581
+ ##ance
582
+ ##andib
583
+ pred
584
+ ar
585
+ predomin
586
+ ##resent
587
+ ##ess
588
+ ##trac
589
+ ##antly
590
+ abuts
591
+ gl
592
+ infer
593
+ predominantly
594
+ ##amm
595
+ ##lamm
596
+ inflamm
597
+ gland
598
+ inferior
599
+ bulky
600
+ di
601
+ ##atory
602
+ ##gh
603
+ ##ough
604
+ ##read
605
+ indeter
606
+ indeterm
607
+ very
608
+ ##ear
609
+ spread
610
+ inflammatory
611
+ indeterminate
612
+ ##own
613
+ show
614
+ ##el
615
+ space
616
+ all
617
+ ##asia
618
+ fissures
619
+ ##ust
620
+ changes
621
+ ##andibular
622
+ cm
623
+ ##mm
624
+ ##ral
625
+ appear
626
+ hyperpl
627
+ hyperplasia
628
+ subm
629
+ feat
630
+ measures
631
+ ##ian
632
+ ##normal
633
+ abnormal
634
+ features
635
+ hist
636
+ iii
637
+ submandibular
638
+ petrous
639
+ 7th
640
+ effusions
641
+ down
642
+ lac
643
+ sug
644
+ ##og
645
+ history
646
+ suggest
647
+ extensive
648
+ 8th
649
+ it
650
+ prob
651
+ mo
652
+ min
653
+ ##wi
654
+ dwi
655
+ fur
656
+ ##erum
657
+ lacerum
658
+ further
659
+ canals
660
+ ##aps
661
+ ##osis
662
+ enh
663
+ ##here
664
+ ##ip
665
+ ##icular
666
+ ##hy
667
+ any
668
+ just
669
+ pat
670
+ t3
671
+ com
672
+ invad
673
+ lymphoid
674
+ ##der
675
+ anterior
676
+ where
677
+ bony
678
+ ##apsular
679
+ fl
680
+ ##val
681
+ extrac
682
+ vid
683
+ vidian
684
+ ##ex
685
+ due
686
+ apex
687
+ spec
688
+ specific
689
+ ##dy
690
+ ##ult
691
+ ##unc
692
+ comp
693
+ extracapsular
694
+ nil
695
+ ##iz
696
+ fissure
697
+ ##unction
698
+ ##oor
699
+ sup
700
+ ##ra
701
+ junction
702
+ clin
703
+ chains
704
+ ##ept
705
+ largest
706
+ clinical
707
+ below
708
+ med
709
+ ##ew
710
+ ##act
711
+ more
712
+ ##ina
713
+ floor
714
+ body
715
+ ##ated
716
+ fr
717
+ sl
718
+ bilaterally
719
+ ##bral
720
+ foramina
721
+ by
722
+ present
723
+ ##ct
724
+ ##avicular
725
+ supra
726
+ slight
727
+ ##clavicular
728
+ dis
729
+ ##ever
730
+ how
731
+ oval
732
+ supraclavicular
733
+ however
734
+ medial
735
+ mar
736
+ tumor
737
+ alth
738
+ although
739
+ ##se
740
+ slightly
741
+ ##sib
742
+ possib
743
+ ##ancement
744
+ ##ay
745
+ enhancement
746
+ maxillary
747
+ large
748
+ ##ely
749
+ normal
750
+ ##tebral
751
+ ovale
752
+ maxim
753
+ cle
754
+ involves
755
+ bone
756
+ clear
757
+ ##ound
758
+ ##st
759
+ mult
760
+ musc
761
+ ##iff
762
+ ##rect
763
+ glands
764
+ direct
765
+ ##ably
766
+ muscle
767
+ these
768
+ necr
769
+ ##ell
770
+ cent
771
+ sides
772
+ carotid
773
+ ##veral
774
+ cric
775
+ several
776
+ fol
777
+ may
778
+ cricoid
779
+ super
780
+ minor
781
+ follow
782
+ ner
783
+ ##ension
784
+ lik
785
+ nerve
786
+ diff
787
+ ##agn
788
+ dim
789
+ ##reat
790
+ dimension
791
+ cy
792
+ ##otu
793
+ maximum
794
+ cyst
795
+ ##athy
796
+ ##acent
797
+ rotu
798
+ ##line
799
+ ##jacent
800
+ ##ndum
801
+ adjacent
802
+ rotundum
803
+ ##til
804
+ cartil
805
+ probably
806
+ likely
807
+ ##tain
808
+ ##opathy
809
+ ##ung
810
+ cartilage
811
+ deep
812
+ ##omax
813
+ ##omaxillary
814
+ ##aden
815
+ pterygomaxillary
816
+ t3n
817
+ lung
818
+ cons
819
+ from
820
+ great
821
+ bor
822
+ ##adenopathy
823
+ border
824
+ apic
825
+ t4
826
+ lymphadenopathy
827
+ ##iple
828
+ multiple
829
+ apices
830
+ ##loss
831
+ ##ost
832
+ ##cliv
833
+ ##ogloss
834
+ ##oglossal
835
+ mat
836
+ ##aging
837
+ greater
838
+ ##clival
839
+ that
840
+ gen
841
+ general
842
+ hypoglossal
843
+ ##uring
844
+ measuring
845
+ ##ld
846
+ cranial
847
+ ##reening
848
+ screening
849
+ fossae
850
+ new
851
+ so
852
+ change
853
+ ##onent
854
+ ##ormed
855
+ component
856
+ staging
857
+ invades
858
+ addition
859
+ superior
860
+ t1n
861
+ spine
862
+ mas
863
+ sit
864
+ sept
865
+ clival
866
+ ##ose
867
+ orbital
868
+ following
869
+ septum
870
+ ##ould
871
+ prever
872
+ mass
873
+ prevertebral
874
+ lies
875
+ ##ient
876
+ ##row
877
+ ##ual
878
+ patient
879
+ ##ized
880
+ soft
881
+ most
882
+ possible
883
+ generalized
884
+ sites
885
+ ##uding
886
+ ##red
887
+ matt
888
+ lob
889
+ incl
890
+ including
891
+ suggested
892
+ pal
893
+ ##ger
894
+ iv
895
+ per
896
+ va
897
+ ##ons
898
+ tiss
899
+ unilateral
900
+ num
901
+ ##ease
902
+ ##2m0
903
+ ##ially
904
+ larger
905
+ dur
906
+ disease
907
+ enc
908
+ ##ocal
909
+ shows
910
+ ##omastoid
911
+ ##use
912
+ ##enm
913
+ ros
914
+ rosenm
915
+ ##ule
916
+ stud
917
+ study
918
+ rec
919
+ rep
920
+ close
921
+ ca
922
+ ple
923
+ wr
924
+ diagn
925
+ marrow
926
+ nodule
927
+ informed
928
+ lobe
929
+ represent
930
+ ##sy
931
+ ##ome
932
+ consent
933
+ extending
934
+ probable
935
+ ##1m0
936
+ necrosis
937
+ ##itten
938
+ inferiorly
939
+ written
940
+ ##metr
941
+ ##ymmetr
942
+ mark
943
+ thr
944
+ marked
945
+ ##ross
946
+ rem
947
+ through
948
+ ##moid
949
+ ##ases
950
+ ##imal
951
+ borderline
952
+ confin
953
+ some
954
+ ##ately
955
+ aden
956
+ ##yr
957
+ appears
958
+ ##ogen
959
+ ##iop
960
+ ##ature
961
+ ##thmoid
962
+ measure
963
+ artery
964
+ ethmoid
965
+ im
966
+ ##eous
967
+ minimal
968
+ biop
969
+ m0
970
+ ##ove
971
+ preclival
972
+ confined
973
+ nature
974
+ tons
975
+ part
976
+ ##et
977
+ palate
978
+ biopsy
979
+ ot
980
+ involved
981
+ patc
982
+ t4n
983
+ ##yroid
984
+ otomastoid
985
+ well
986
+ heter
987
+ clus
988
+ patchy
989
+ do
990
+ res
991
+ ##od
992
+ ##inal
993
+ heterogen
994
+ cluster
995
+ ct
996
+ vb
997
+ react
998
+ anteriorly
999
+ remain
1000
+ reactive
1001
+ case
1002
+ tonsil
1003
+ ##ch
1004
+ excluded
1005
+ ##ade
1006
+ ha
1007
+ ##erous
1008
+ ##iltr
1009
+ ##uller
1010
+ siz
1011
+ infiltr
1012
+ marg
1013
+ numerous
1014
+ rosenmuller
1015
+ ##nific
1016
+ ##cer
1017
+ ##cept
1018
+ thyroid
1019
+ signific
1020
+ above
1021
+ diffuse
1022
+ size
1023
+ gross
1024
+ does
1025
+ margin
1026
+ over
1027
+ tissue
1028
+ please
1029
+ ##ile
1030
+ made
1031
+ metastasis
1032
+ posteriorly
1033
+ ##eping
1034
+ adenoid
1035
+ ke
1036
+ keeping
1037
+ main
1038
+ site
1039
+ around
1040
+ dura
1041
+ ##usual
1042
+ area
1043
+ unusual
1044
+ cann
1045
+ cannot
1046
+ c1
1047
+ palatine
1048
+ ##ro
1049
+ uncer
1050
+ while
1051
+ uncertain
1052
+ except
1053
+ pet
1054
+ high
1055
+ len
1056
+ ##gth
1057
+ cont
1058
+ length
1059
+ within
1060
+ central
1061
+ heterogeneous
1062
+ br
1063
+ ph
1064
+ ##iew
1065
+ suggesting
1066
+ pharyn
1067
+ bases
1068
+ ##ran
1069
+ mainly
1070
+ espec
1071
+ especially
1072
+ ##ere
1073
+ ##ach
1074
+ proc
1075
+ matted
1076
+ process
1077
+ ##les
1078
+ spinal
1079
+ ##ache
1080
+ diagnosis
1081
+ ##otic
1082
+ mm
1083
+ ##0m0
1084
+ spir
1085
+ air
1086
+ ##ting
1087
+ intrac
1088
+ view
1089
+ cong
1090
+ pres
1091
+ ##vious
1092
+ ##ymmetrical
1093
+ have
1094
+ intracran
1095
+ ##lom
1096
+ than
1097
+ enhanc
1098
+ conglom
1099
+ conglomer
1100
+ ve
1101
+ ##ies
1102
+ laterally
1103
+ intracranial
1104
+ ret
1105
+ deg
1106
+ les
1107
+ spar
1108
+ lesion
1109
+ ##oan
1110
+ vein
1111
+ could
1112
+ she
1113
+ ##rel
1114
+ ##ath
1115
+ choan
1116
+ remainder
1117
+ full
1118
+ focal
1119
+ ##ty
1120
+ ##enc
1121
+ correl
1122
+ fill
1123
+ necrotic
1124
+ centred
1125
+ has
1126
+ loc
1127
+ ##ention
1128
+ access
1129
+ abutting
1130
+ appro
1131
+ enhancing
1132
+ ##ages
1133
+ ##xim
1134
+ ##asc
1135
+ ##ect
1136
+ ##tric
1137
+ ##ll
1138
+ retention
1139
+ approxim
1140
+ approximately
1141
+ ##ural
1142
+ none
1143
+ images
1144
+ brain
1145
+ accessory
1146
+ ##oph
1147
+ ##qu
1148
+ they
1149
+ ##ard
1150
+ triangles
1151
+ significance
1152
+ op
1153
+ infiltration
1154
+ cell
1155
+ ob
1156
+ ##emporal
1157
+ ##fact
1158
+ secre
1159
+ ##tefact
1160
+ artefact
1161
+ long
1162
+ vol
1163
+ ##ume
1164
+ ##clude
1165
+ directly
1166
+ sheath
1167
+ cells
1168
+ volume
1169
+ scl
1170
+ ##ging
1171
+ ##ort
1172
+ petro
1173
+ scler
1174
+ c2
1175
+ palat
1176
+ ##air
1177
+ bulges
1178
+ ##em
1179
+ ##gether
1180
+ extr
1181
+ magn
1182
+ together
1183
+ midline
1184
+ previous
1185
+ mildly
1186
+ seen
1187
+ cysts
1188
+ loss
1189
+ ##ini
1190
+ ##itary
1191
+ matting
1192
+ tu
1193
+ ##ont
1194
+ suspicion
1195
+ bulging
1196
+ ##plac
1197
+ appearance
1198
+ secretions
1199
+ tub
1200
+ ##tic
1201
+ inc
1202
+ ##ign
1203
+ vertebral
1204
+ recess
1205
+ petroclival
1206
+ magnum
1207
+ fasc
1208
+ pit
1209
+ ##sess
1210
+ ##uitary
1211
+ ##3m0
1212
+ assess
1213
+ choana
1214
+ palatini
1215
+ pituitary
1216
+ 3cm
1217
+ symmetrical
1218
+ intr
1219
+ fascia
1220
+ fair
1221
+ n1
1222
+ vel
1223
+ ##mental
1224
+ located
1225
+ sclerosis
1226
+ fairly
1227
+ veli
1228
+ 2cm
1229
+ ##x1
1230
+ ##ances
1231
+ appearances
1232
+ encase
1233
+ ##ence
1234
+ spared
1235
+ ##ophy
1236
+ fs
1237
+ ##ven
1238
+ should
1239
+ superiorly
1240
+ degr
1241
+ tr
1242
+ tur
1243
+ ##icult
1244
+ ##ensity
1245
+ ##erved
1246
+ difficult
1247
+ newly
1248
+ preserved
1249
+ 5cm
1250
+ v3
1251
+ ##ore
1252
+ ##ilar
1253
+ axis
1254
+ ##ineural
1255
+ turb
1256
+ temporal
1257
+ ##uous
1258
+ ##astric
1259
+ ##ator
1260
+ caus
1261
+ correlation
1262
+ ##ered
1263
+ ##iated
1264
+ poster
1265
+ ##ongue
1266
+ perineural
1267
+ degrad
1268
+ por
1269
+ ##arotid
1270
+ ##tern
1271
+ ##igastric
1272
+ fatty
1273
+ ##uct
1274
+ spaces
1275
+ highly
1276
+ ##nt
1277
+ ##ental
1278
+ defined
1279
+ invade
1280
+ t3n2m0
1281
+ tongue
1282
+ und
1283
+ ##ates
1284
+ intensity
1285
+ pro
1286
+ contin
1287
+ ##lying
1288
+ jugul
1289
+ displac
1290
+ degraded
1291
+ portion
1292
+ ##ues
1293
+ few
1294
+ abnormality
1295
+ invaded
1296
+ ##ontal
1297
+ 6cm
1298
+ po
1299
+ vess
1300
+ ##fore
1301
+ short
1302
+ submental
1303
+ see
1304
+ tonsils
1305
+ ##aches
1306
+ vessel
1307
+ pl
1308
+ exclude
1309
+ t1n0m0
1310
+ particular
1311
+ pharyngeal
1312
+ jugulod
1313
+ foc
1314
+ ##int
1315
+ ##osed
1316
+ rel
1317
+ intact
1318
+ ##udal
1319
+ longus
1320
+ jugulodigastric
1321
+ retain
1322
+ oropharyngeal
1323
+ being
1324
+ possibly
1325
+ tin
1326
+ ##ative
1327
+ therefore
1328
+ ##ility
1329
+ ##ack
1330
+ regard
1331
+ recent
1332
+ regarded
1333
+ eval
1334
+ sur
1335
+ ul
1336
+ represents
1337
+ rest
1338
+ evalu
1339
+ 7cm
1340
+ cere
1341
+ n2
1342
+ ##vator
1343
+ ##ities
1344
+ levator
1345
+ ##ress
1346
+ iia
1347
+ t3n1m0
1348
+ conglomeration
1349
+ end
1350
+ occ
1351
+ round
1352
+ tip
1353
+ ##ased
1354
+ contain
1355
+ orbits
1356
+ invading
1357
+ disc
1358
+ diagnosed
1359
+ opac
1360
+ tiny
1361
+ asymmetr
1362
+ moder
1363
+ partially
1364
+ particularly
1365
+ if
1366
+ mer
1367
+ ##ire
1368
+ ##tire
1369
+ entire
1370
+ dural
1371
+ retained
1372
+ moderate
1373
+ eust
1374
+ mal
1375
+ ##ail
1376
+ ##pect
1377
+ t2n
1378
+ frontal
1379
+ additional
1380
+ tissues
1381
+ ##achian
1382
+ under
1383
+ eustachian
1384
+ malign
1385
+ 10
1386
+ 2m0
1387
+ ##asilar
1388
+ reaches
1389
+ filling
1390
+ extra
1391
+ encasement
1392
+ evaluation
1393
+ ev
1394
+ str
1395
+ ##ciated
1396
+ ##x2
1397
+ ##asound
1398
+ ##entr
1399
+ ##trasound
1400
+ ##olateral
1401
+ incid
1402
+ ultrasound
1403
+ mandib
1404
+ v2
1405
+ ##ber
1406
+ ##iter
1407
+ reach
1408
+ one
1409
+ ##ense
1410
+ tube
1411
+ ##intense
1412
+ incidental
1413
+ mandible
1414
+ 4cm
1415
+ prot
1416
+ caudal
1417
+ pharyng
1418
+ processes
1419
+ conglomerate
1420
+ ##ise
1421
+ extent
1422
+ ##obasilar
1423
+ possibility
1424
+ perf
1425
+ causing
1426
+ malignant
1427
+ evid
1428
+ pharyngobasilar
1429
+ 12
1430
+ tens
1431
+ ##uid
1432
+ ##osc
1433
+ only
1434
+ form
1435
+ scf
1436
+ hem
1437
+ ##sociated
1438
+ associated
1439
+ abnormalities
1440
+ ##odular
1441
+ obs
1442
+ proven
1443
+ underlying
1444
+ performed
1445
+ tensor
1446
+ 1cm
1447
+ ic
1448
+ ne
1449
+ ##ring
1450
+ ##edi
1451
+ ##lete
1452
+ adv
1453
+ ##ocol
1454
+ compress
1455
+ t1n1m0
1456
+ perip
1457
+ number
1458
+ protocol
1459
+ ln
1460
+ less
1461
+ mot
1462
+ ##pos
1463
+ ##01
1464
+ exophy
1465
+ apical
1466
+ complete
1467
+ endosc
1468
+ entirely
1469
+ ica
1470
+ exophytic
1471
+ cc
1472
+ mec
1473
+ ##wise
1474
+ ##arct
1475
+ ##ules
1476
+ infarct
1477
+ otherwise
1478
+ suggestive
1479
+ maximal
1480
+ centered
1481
+ posterolateral
1482
+ related
1483
+ contains
1484
+ 8mm
1485
+ ac
1486
+ equ
1487
+ n0
1488
+ ##fic
1489
+ ##kel
1490
+ ##inodular
1491
+ ##ital
1492
+ nodules
1493
+ ##ised
1494
+ ##ising
1495
+ exp
1496
+ smaller
1497
+ scar
1498
+ ##amus
1499
+ ##ivocal
1500
+ ##anced
1501
+ ##ification
1502
+ compar
1503
+ multinodular
1504
+ superfic
1505
+ encases
1506
+ throughout
1507
+ significant
1508
+ evidence
1509
+ advanced
1510
+ motion
1511
+ meckel
1512
+ equivocal
1513
+ 8cm
1514
+ imm
1515
+ ins
1516
+ ##astic
1517
+ sphenopalatine
1518
+ ##epar
1519
+ mucosa
1520
+ t1n2m0
1521
+ rounded
1522
+ ##ediately
1523
+ scarring
1524
+ immediately
1525
+ red
1526
+ ##×2
1527
+ ##reg
1528
+ ##inates
1529
+ ##aparotid
1530
+ fluid
1531
+ ##ema
1532
+ asymmetry
1533
+ obstr
1534
+ 5mm
1535
+ fav
1536
+ ir
1537
+ ib
1538
+ stern
1539
+ ts
1540
+ ##round
1541
+ ##tle
1542
+ ##rete
1543
+ includ
1544
+ ##itis
1545
+ ##lyp
1546
+ such
1547
+ subtle
1548
+ cave
1549
+ assessment
1550
+ intraparotid
1551
+ turbinate
1552
+ turbinates
1553
+ continuous
1554
+ polyp
1555
+ discrete
1556
+ ##regular
1557
+ irregular
1558
+ includes
1559
+ 3n
1560
+ rat
1561
+ ##nown
1562
+ ##×3
1563
+ ##idual
1564
+ cord
1565
+ cranioc
1566
+ enlargement
1567
+ cystic
1568
+ t4n2m0
1569
+ ##acheal
1570
+ occip
1571
+ opacification
1572
+ merges
1573
+ superficial
1574
+ rather
1575
+ 7mm
1576
+ aer
1577
+ des
1578
+ ramus
1579
+ ##ide
1580
+ conf
1581
+ ##ibr
1582
+ hyperintense
1583
+ arch
1584
+ ##erent
1585
+ intra
1586
+ ag
1587
+ ben
1588
+ was
1589
+ ##ted
1590
+ ##ful
1591
+ ##ating
1592
+ ##oup
1593
+ ##omy
1594
+ external
1595
+ condy
1596
+ retros
1597
+ ##opl
1598
+ ##opy
1599
+ clinically
1600
+ ##odal
1601
+ surround
1602
+ 6mm
1603
+ fn
1604
+ known
1605
+ ##racheal
1606
+ ##atracheal
1607
+ ##idomastoid
1608
+ areas
1609
+ ##leidomastoid
1610
+ ##isp
1611
+ paratracheal
1612
+ ##ocleidomastoid
1613
+ lie
1614
+ incre
1615
+ cerebral
1616
+ ##entric
1617
+ periparotid
1618
+ endoscopy
1619
+ sternocleidomastoid
1620
+ 11
1621
+ back
1622
+ fast
1623
+ fibr
1624
+ nerv
1625
+ out
1626
+ ra
1627
+ rim
1628
+ would
1629
+ ##ank
1630
+ ##olog
1631
+ thin
1632
+ those
1633
+ det
1634
+ depos
1635
+ cross
1636
+ been
1637
+ asymmetrical
1638
+ frank
1639
+ consid
1640
+ consist
1641
+ haem
1642
+ correlate
1643
+ extran
1644
+ foci
1645
+ focus
1646
+ ##pective
1647
+ completely
1648
+ favour
1649
+ occipital
1650
+ nerves
1651
+ deposit
1652
+ 13
1653
+ c3
1654
+ local
1655
+ tor
1656
+ us
1657
+ ##ning
1658
+ ##ying
1659
+ ##bed
1660
+ ##4mm
1661
+ white
1662
+ iib
1663
+ sequ
1664
+ supr
1665
+ matter
1666
+ t4n1m0
1667
+ contig
1668
+ extranodal
1669
+ line
1670
+ ma
1671
+ ##mend
1672
+ ##most
1673
+ indent
1674
+ ##enous
1675
+ ##ommend
1676
+ almost
1677
+ ##ameter
1678
+ criter
1679
+ reporting
1680
+ diameter
1681
+ encased
1682
+ recommend
1683
+ residual
1684
+ overall
1685
+ continu
1686
+ again
1687
+ fnac
1688
+ contiguous
1689
+ criteria
1690
+ 0cm
1691
+ ed
1692
+ stat
1693
+ venous
1694
+ ##icated
1695
+ ##vement
1696
+ subc
1697
+ ##tex
1698
+ movement
1699
+ t3n1
1700
+ filled
1701
+ track
1702
+ hemisp
1703
+ across
1704
+ expand
1705
+ 9cm
1706
+ c5
1707
+ capsular
1708
+ den
1709
+ ill
1710
+ n3
1711
+ ##ause
1712
+ ##ius
1713
+ ##ioma
1714
+ ##tical
1715
+ ##pical
1716
+ ##5mm
1717
+ ##bra
1718
+ include
1719
+ ##est
1720
+ ##icul
1721
+ ##trophy
1722
+ ##olar
1723
+ verte
1724
+ arter
1725
+ foraminae
1726
+ presum
1727
+ 10mm
1728
+ torus
1729
+ denerv
1730
+ vertebra
1731
+ bec
1732
+ dil
1733
+ gr
1734
+ nar
1735
+ ##cri
1736
+ ##ste
1737
+ ##ener
1738
+ ##aneous
1739
+ ##ount
1740
+ identify
1741
+ ##uell
1742
+ bet
1743
+ medially
1744
+ t3n3m0
1745
+ rosenmuell
1746
+ degener
1747
+ obvious
1748
+ pole
1749
+ cereb
1750
+ insepar
1751
+ retrospective
1752
+ consistent
1753
+ linear
1754
+ continuity
1755
+ status
1756
+ arteries
1757
+ denervation
1758
+ narrow
1759
+ ##cribed
1760
+ rosenmueller
1761
+ inseparable
1762
+ am
1763
+ dri
1764
+ ventric
1765
+ ##mon
1766
+ ##up
1767
+ ##to
1768
+ ##ypical
1769
+ nodular
1770
+ ##utaneous
1771
+ arising
1772
+ generalised
1773
+ periv
1774
+ clusters
1775
+ benign
1776
+ subcutaneous
1777
+ because
1778
+ cerebell
1779
+ driven
1780
+ 3m0
1781
+ 9mm
1782
+ duct
1783
+ man
1784
+ oed
1785
+ sim
1786
+ ##iast
1787
+ ##x3
1788
+ ##6mm
1789
+ ##arius
1790
+ inter
1791
+ ##ace
1792
+ onto
1793
+ hypopl
1794
+ patent
1795
+ mediast
1796
+ adenoma
1797
+ partial
1798
+ choanal
1799
+ ##ences
1800
+ ##llar
1801
+ tubarius
1802
+ displacing
1803
+ ##ails
1804
+ infarcts
1805
+ compared
1806
+ obstruct
1807
+ polypoid
1808
+ condyle
1809
+ ##ology
1810
+ details
1811
+ considered
1812
+ sequences
1813
+ recommended
1814
+ group
1815
+ many
1816
+ oedema
1817
+ gang
1818
+ hard
1819
+ loo
1820
+ pp
1821
+ poor
1822
+ via
1823
+ were
1824
+ ##een
1825
+ ##ce
1826
+ ##ween
1827
+ ##jor
1828
+ ##ans
1829
+ ##ection
1830
+ ##osely
1831
+ closely
1832
+ ##illa
1833
+ shap
1834
+ palsy
1835
+ image
1836
+ t4n3m0
1837
+ overlying
1838
+ sparing
1839
+ displace
1840
+ aerated
1841
+ surrounding
1842
+ major
1843
+ between
1844
+ degenerative
1845
+ similar
1846
+ gangl
1847
+ look
1848
+ aur
1849
+ dx
1850
+ lying
1851
+ sal
1852
+ ##ium
1853
+ ##rh
1854
+ orific
1855
+ ##ivary
1856
+ extraction
1857
+ t3n2
1858
+ heterogenous
1859
+ remains
1860
+ plan
1861
+ strip
1862
+ neur
1863
+ posterolaterally
1864
+ craniocervical
1865
+ described
1866
+ indenting
1867
+ hypoplastic
1868
+ polypoidal
1869
+ poorly
1870
+ salivary
1871
+ 201
1872
+ dental
1873
+ tw
1874
+ tent
1875
+ ##ler
1876
+ ##yl
1877
+ ##hes
1878
+ ##asm
1879
+ ##orph
1880
+ ##orium
1881
+ ##orrh
1882
+ naso
1883
+ ##asellar
1884
+ retropharynx
1885
+ ##velop
1886
+ ##otemporal
1887
+ still
1888
+ parapharynx
1889
+ definitely
1890
+ ##uction
1891
+ atypical
1892
+ its
1893
+ diffusion
1894
+ t3n0m0
1895
+ t4n3
1896
+ t4n1
1897
+ branc
1898
+ location
1899
+ ##ectomy
1900
+ optic
1901
+ recesses
1902
+ relative
1903
+ reaching
1904
+ ##iculotemporal
1905
+ amount
1906
+ auriculotemporal
1907
+ two
1908
+ tentorium
1909
+ 4mm
1910
+ av
1911
+ che
1912
+ dou
1913
+ when
1914
+ ##ned
1915
+ ##lu
1916
+ ##liter
1917
+ ##other
1918
+ ##side
1919
+ ##tful
1920
+ ##yond
1921
+ ##×1
1922
+ ##btful
1923
+ ##7mm
1924
+ ##orbit
1925
+ ##ula
1926
+ too
1927
+ ##ution
1928
+ distal
1929
+ beyond
1930
+ infra
1931
+ t3n3
1932
+ t1n0
1933
+ imaging
1934
+ minimally
1935
+ restric
1936
+ fills
1937
+ obliter
1938
+ vessels
1939
+ ##pected
1940
+ conflu
1941
+ increased
1942
+ outside
1943
+ haemorrh
1944
+ presumably
1945
+ orifice
1946
+ doubtful
1947
+ ##orbital
1948
+ 4n
1949
+ er
1950
+ el
1951
+ go
1952
+ mening
1953
+ mastic
1954
+ old
1955
+ ##gment
1956
+ ##ole
1957
+ ##fs
1958
+ ##way
1959
+ ##erm
1960
+ ##onic
1961
+ ##inum
1962
+ ##ench
1963
+ ##igin
1964
+ replac
1965
+ ##omal
1966
+ ##trance
1967
+ parench
1968
+ corres
1969
+ scanned
1970
+ develop
1971
+ ##otty
1972
+ entrance
1973
+ hypo
1974
+ ##ible
1975
+ secondary
1976
+ thicker
1977
+ shotty
1978
+ indicated
1979
+ segment
1980
+ hypertrophy
1981
+ common
1982
+ t1n1
1983
+ masses
1984
+ ##onstr
1985
+ cause
1986
+ occup
1987
+ asymmetric
1988
+ ##entricular
1989
+ usg
1990
+ suprasellar
1991
+ narrowing
1992
+ mediastinum
1993
+ confluent
1994
+ parenchym
1995
+ corresp
1996
+ 18
1997
+ 3mm
1998
+ cove
1999
+ derm
2000
+ laryn
2001
+ n2m0
2002
+ tail
2003
+ war
2004
+ ##eph
2005
+ ##monstr
2006
+ ##lp
2007
+ ##tif
2008
+ ##ind
2009
+ ##itre
2010
+ ##ither
2011
+ met
2012
+ ##omorph
2013
+ ##oll
2014
+ ##achn
2015
+ invasive
2016
+ cortex
2017
+ whole
2018
+ help
2019
+ demonstr
2020
+ anter
2021
+ artif
2022
+ arachn
2023
+ ##reatment
2024
+ encro
2025
+ pleural
2026
+ pleomorph
2027
+ result
2028
+ overt
2029
+ ##ascular
2030
+ causes
2031
+ forming
2032
+ fibrosis
2033
+ raising
2034
+ cerebellar
2035
+ ganglia
2036
+ looking
2037
+ striped
2038
+ tooth
2039
+ goitre
2040
+ covered
2041
+ ##ephal
2042
+ artifact
2043
+ arachnoid
2044
+ pleomorphic
2045
+ 14mm
2046
+ 21
2047
+ bil
2048
+ cis
2049
+ dated
2050
+ either
2051
+ mandibular
2052
+ pons
2053
+ rt
2054
+ ##mic
2055
+ ##aem
2056
+ ##audal
2057
+ ##ner
2058
+ ##ronic
2059
+ ##tal
2060
+ ##poma
2061
+ ##atal
2062
+ ##atible
2063
+ ##usely
2064
+ ##ulated
2065
+ ##ises
2066
+ ##vere
2067
+ unit
2068
+ chronic
2069
+ cortical
2070
+ ##rimal
2071
+ severe
2072
+ lipoma
2073
+ showing
2074
+ pattern
2075
+ compatible
2076
+ different
2077
+ diffusely
2078
+ components
2079
+ t1n2
2080
+ t4n2
2081
+ opening
2082
+ merge
2083
+ t2n1m0
2084
+ struct
2085
+ compression
2086
+ 3n2m0
2087
+ craniocaudal
2088
+ crosses
2089
+ 13mm
2090
+ hemisphere
2091
+ vertebrae
2092
+ periventricular
2093
+ obstructed
2094
+ infraorbital
2095
+ developmental
2096
+ correspond
2097
+ helpful
2098
+ 22
2099
+ 20
2100
+ band
2101
+ co
2102
+ dd
2103
+ em
2104
+ hor
2105
+ ij
2106
+ ller
2107
+ n0m0
2108
+ ov
2109
+ oste
2110
+ separ
2111
+ wing
2112
+ ##opic
2113
+ ##ved
2114
+ ##3mm
2115
+ ##ward
2116
+ ##atation
2117
+ isch
2118
+ total
2119
+ spond
2120
+ ##ified
2121
+ ##thin
2122
+ scans
2123
+ ##irc
2124
+ ##ymp
2125
+ suscept
2126
+ ##ibility
2127
+ mucous
2128
+ bulge
2129
+ prominence
2130
+ aspects
2131
+ sell
2132
+ inflammation
2133
+ ##earch
2134
+ ##ifferent
2135
+ lobulated
2136
+ ##omeatal
2137
+ research
2138
+ contact
2139
+ airway
2140
+ artefacts
2141
+ ##ontine
2142
+ undifferent
2143
+ ##ailable
2144
+ hemith
2145
+ lns
2146
+ increase
2147
+ dilatation
2148
+ ventricles
2149
+ ##ylosis
2150
+ relatively
2151
+ masticator
2152
+ parenchymal
2153
+ dermat
2154
+ warthin
2155
+ cistern
2156
+ ddx
2157
+ ovoid
2158
+ ##wards
2159
+ ischaem
2160
+ spondylosis
2161
+ susceptibility
2162
+ sella
2163
+ undifferentiated
2164
+ bas
2165
+ ball
2166
+ c4
2167
+ circ
2168
+ giv
2169
+ n1m0
2170
+ ost
2171
+ pri
2172
+ treatment
2173
+ vocal
2174
+ we
2175
+ ##pinal
2176
+ ##heres
2177
+ ##art
2178
+ ##aspinal
2179
+ ##ined
2180
+ ##osion
2181
+ ##ison
2182
+ origin
2183
+ necks
2184
+ ##owing
2185
+ thir
2186
+ paraspinal
2187
+ smoo
2188
+ ##irm
2189
+ prel
2190
+ skin
2191
+ antr
2192
+ ##tered
2193
+ ##app
2194
+ appearing
2195
+ dimensions
2196
+ markedly
2197
+ infiltrated
2198
+ infiltrates
2199
+ adenoidal
2200
+ pharynx
2201
+ compressing
2202
+ expans
2203
+ comparison
2204
+ confirm
2205
+ deposits
2206
+ edema
2207
+ hemispheres
2208
+ expanded
2209
+ shape
2210
+ available
2211
+ haemorrhage
2212
+ erosion
2213
+ else
2214
+ structures
2215
+ corresponds
2216
+ ijv
2217
+ circum
2218
+ third
2219
+ smooth
2220
+ 2n
2221
+ basal
2222
+ c6
2223
+ coll
2224
+ lat
2225
+ ques
2226
+ ser
2227
+ sol
2228
+ symp
2229
+ ##m1
2230
+ ##iasm
2231
+ ##iomeatal
2232
+ ##ci
2233
+ ##×4
2234
+ ##bm0
2235
+ their
2236
+ ##one
2237
+ ##inary
2238
+ nasol
2239
+ ##trib
2240
+ ##veolar
2241
+ contex
2242
+ chiasm
2243
+ alveolar
2244
+ ##ame
2245
+ ##urre
2246
+ notch
2247
+ ##gestion
2248
+ ##uced
2249
+ ##iminary
2250
+ maxilla
2251
+ path
2252
+ comb
2253
+ ##izontal
2254
+ distrib
2255
+ t1n3m0
2256
+ lobes
2257
+ ##gery
2258
+ ##yroidectomy
2259
+ infiltrating
2260
+ lengths
2261
+ centrally
2262
+ trache
2263
+ displaces
2264
+ plates
2265
+ surgery
2266
+ opacified
2267
+ compressed
2268
+ peripher
2269
+ irregularity
2270
+ aeration
2271
+ raises
2272
+ crossing
2273
+ haemang
2274
+ locally
2275
+ dilated
2276
+ meningioma
2277
+ replaced
2278
+ hypointense
2279
+ horizontal
2280
+ hemithyroidectomy
2281
+ ballo
2282
+ given
2283
+ ostiomeatal
2284
+ preliminary
2285
+ antrum
2286
+ question
2287
+ context
2288
+ distribution
2289
+ af
2290
+ bl
2291
+ cour
2292
+ coup
2293
+ ded
2294
+ gd
2295
+ hil
2296
+ ia
2297
+ lim
2298
+ oph
2299
+ pur
2300
+ run
2301
+ sw
2302
+ sent
2303
+ same
2304
+ vall
2305
+ wor
2306
+ ##ness
2307
+ ##li
2308
+ ##sent
2309
+ ##fort
2310
+ ##vate
2311
+ ##view
2312
+ ##ald
2313
+ ##alateral
2314
+ ##almic
2315
+ ##asing
2316
+ ##asternal
2317
+ ##ertebral
2318
+ ##ination
2319
+ inner
2320
+ ##athe
2321
+ ##ecula
2322
+ ##ositis
2323
+ requ
2324
+ review
2325
+ towards
2326
+ oral
2327
+ exc
2328
+ exam
2329
+ expected
2330
+ unfort
2331
+ ##olaps
2332
+ ##acic
2333
+ sinusitis
2334
+ axilla
2335
+ ##thalmic
2336
+ dev
2337
+ enter
2338
+ contralateral
2339
+ prolaps
2340
+ effac
2341
+ t2wfs
2342
+ att
2343
+ ##unately
2344
+ ##apy
2345
+ indic
2346
+ palp
2347
+ palant
2348
+ remo
2349
+ clustering
2350
+ margins
2351
+ enhanced
2352
+ lesions
2353
+ sclerotic
2354
+ caused
2355
+ displaced
2356
+ plate
2357
+ 12th
2358
+ ##poses
2359
+ reduced
2360
+ obstruction
2361
+ polyposis
2362
+ ##omyositis
2363
+ surrounds
2364
+ asymmetrically
2365
+ suprasternal
2366
+ ##stem
2367
+ ventricle
2368
+ pps
2369
+ ppf
2370
+ displacement
2371
+ planning
2372
+ neuropathy
2373
+ branches
2374
+ chem
2375
+ ##otherapy
2376
+ encroaches
2377
+ separate
2378
+ dermatomyositis
2379
+ ischaemia
2380
+ private
2381
+ latter
2382
+ combined
2383
+ couple
2384
+ dedicated
2385
+ ophthalmic
2386
+ purposes
2387
+ vallecula
2388
+ work
2389
+ unfortunately
2390
+ 14
2391
+ 1m0
2392
+ 15mm
2393
+ 2x
2394
+ 3r
2395
+ 9x
2396
+ atrophy
2397
+ bowing
2398
+ dr
2399
+ hal
2400
+ ham
2401
+ ling
2402
+ mr
2403
+ mic
2404
+ mac
2405
+ molar
2406
+ os
2407
+ qual
2408
+ sul
2409
+ wid
2410
+ ##ek
2411
+ ##iation
2412
+ ##ne
2413
+ ##nw
2414
+ ##cing
2415
+ ##la
2416
+ ##xus
2417
+ ##dies
2418
+ ##occ
2419
+ ##oint
2420
+ ##uated
2421
+ ##ts
2422
+ ##press
2423
+ ##2mm
2424
+ ##fer
2425
+ ##face
2426
+ ##0mm
2427
+ ##8mm
2428
+ ##inct
2429
+ ##pers
2430
+ congestion
2431
+ ##acia
2432
+ ##acrimal
2433
+ ##istinct
2434
+ once
2435
+ ##anding
2436
+ apart
2437
+ bodies
2438
+ mucus
2439
+ ##illar
2440
+ adc
2441
+ appre
2442
+ indistinct
2443
+ like
2444
+ t3n0
2445
+ encephal
2446
+ encasing
2447
+ plexus
2448
+ tonsillar
2449
+ remaining
2450
+ infiltrative
2451
+ adenoids
2452
+ ##ected
2453
+ temporalis
2454
+ protr
2455
+ ulcer
2456
+ tips
2457
+ endoscopic
2458
+ bene
2459
+ fibrous
2460
+ interval
2461
+ shaped
2462
+ branch
2463
+ restriction
2464
+ restricted
2465
+ ##omalacia
2466
+ demonstrate
2467
+ resulting
2468
+ craniocaudally
2469
+ solid
2470
+ sympathe
2471
+ nasolacrimal
2472
+ ##urrent
2473
+ peripheral
2474
+ haemangioma
2475
+ questionable
2476
+ examination
2477
+ removed
2478
+ 3rd
2479
+ half
2480
+ lingual
2481
+ quality
2482
+ ##nwald
2483
+ ##occip
2484
+ sympathetic
2485
+ 17
2486
+ 19
2487
+ 6×2
2488
+ 7x
2489
+ 8x1
2490
+ based
2491
+ dy
2492
+ digastric
2493
+ ep
2494
+ ecc
2495
+ ell
2496
+ ip
2497
+ joint
2498
+ near
2499
+ pul
2500
+ pne
2501
+ ris
2502
+ sing
2503
+ tou
2504
+ void
2505
+ vascular
2506
+ way
2507
+ ##ix
2508
+ ##roc
2509
+ ##silateral
2510
+ ##tor
2511
+ ##pty
2512
+ ##hind
2513
+ ##vin
2514
+ ##1mm
2515
+ ##kely
2516
+ ##ord
2517
+ ##term
2518
+ ##umat
2519
+ ##omed
2520
+ ##troph
2521
+ ##allic
2522
+ unli
2523
+ convin
2524
+ parav
2525
+ ##avic
2526
+ infection
2527
+ cavities
2528
+ ##amina
2529
+ clavic
2530
+ section
2531
+ dep
2532
+ eng
2533
+ behind
2534
+ another
2535
+ suspected
2536
+ ##quela
2537
+ effect
2538
+ find
2539
+ ##ucos
2540
+ thickness
2541
+ thoracic
2542
+ add
2543
+ sequela
2544
+ histology
2545
+ ##iptical
2546
+ comment
2547
+ ##adenoma
2548
+ constric
2549
+ thyroidectomy
2550
+ ##roadenoma
2551
+ heterogeneously
2552
+ presence
2553
+ brainstem
2554
+ secretion
2555
+ artefactual
2556
+ sheaths
2557
+ tract
2558
+ trace
2559
+ surface
2560
+ t2n1
2561
+ 10x
2562
+ 12mm
2563
+ need
2564
+ neopl
2565
+ inser
2566
+ 3n1m0
2567
+ destr
2568
+ retrosternal
2569
+ detected
2570
+ consider
2571
+ usual
2572
+ interm
2573
+ obstructive
2574
+ larynx
2575
+ metallic
2576
+ severely
2577
+ differential
2578
+ empty
2579
+ osteophy
2580
+ expansion
2581
+ circumf
2582
+ pathology
2583
+ trachea
2584
+ after
2585
+ course
2586
+ hilum
2587
+ limit
2588
+ effaced
2589
+ palpable
2590
+ chemotherapy
2591
+ macroadenoma
2592
+ encephalomalacia
2593
+ beneath
2594
+ ##nwaldt
2595
+ dysp
2596
+ elliptical
2597
+ ipsilateral
2598
+ pneumat
2599
+ risk
2600
+ single
2601
+ unlikely
2602
+ convincing
2603
+ paravertebral
2604
+ constrictor
2605
+ neoplasm
2606
+ 17mm
2607
+ 25
2608
+ 2x1
2609
+ 3x3
2610
+ 4x2
2611
+ 7x1
2612
+ 9x1
2613
+ aud
2614
+ bu
2615
+ cer
2616
+ current
2617
+ dens
2618
+ ec
2619
+ even
2620
+ fac
2621
+ fore
2622
+ guid
2623
+ hom
2624
+ rid
2625
+ rad
2626
+ ray
2627
+ sj
2628
+ vi
2629
+ ##lf
2630
+ ##lot
2631
+ ##lasia
2632
+ ##xap
2633
+ ##of
2634
+ ##tes
2635
+ ##tom
2636
+ ##ys
2637
+ ##alk
2638
+ ##arac
2639
+ ##ren
2640
+ ##ingeal
2641
+ ##itory
2642
+ ##eningeal
2643
+ ##terist
2644
+ meat
2645
+ ##oun
2646
+ ##ision
2647
+ position
2648
+ thal
2649
+ paral
2650
+ charac
2651
+ axillary
2652
+ involution
2653
+ t2b
2654
+ fossas
2655
+ ##amed
2656
+ determ
2657
+ stalk
2658
+ ##ividual
2659
+ anomal
2660
+ ##ancy
2661
+ ##unar
2662
+ ##ock
2663
+ individual
2664
+ predominately
2665
+ showed
2666
+ submucos
2667
+ lacunar
2668
+ ##ogren
2669
+ suggests
2670
+ tumors
2671
+ ##seous
2672
+ ##elling
2673
+ ##tainty
2674
+ peri
2675
+ wraps
2676
+ ##ching
2677
+ contour
2678
+ degre
2679
+ shelf
2680
+ tubes
2681
+ trapp
2682
+ plus
2683
+ plain
2684
+ recently
2685
+ evaluate
2686
+ t2n2m0
2687
+ t2n3m0
2688
+ malignancy
2689
+ obsc
2690
+ tsxap
2691
+ condyles
2692
+ 11mm
2693
+ ##ological
2694
+ sequence
2695
+ mak
2696
+ edge
2697
+ expanding
2698
+ n3b
2699
+ ##monary
2700
+ perivascular
2701
+ groups
2702
+ obliterated
2703
+ occupying
2704
+ ##inds
2705
+ basi
2706
+ weight
2707
+ running
2708
+ osseous
2709
+ sulci
2710
+ ##pression
2711
+ pulmonary
2712
+ ##ixed
2713
+ ##omedial
2714
+ findinds
2715
+ dysplasia
2716
+ auditory
2717
+ certainty
2718
+ ecs
2719
+ guided
2720
+ homogen
2721
+ ridge
2722
+ sjogren
2723
+ ##teristic
2724
+ characteristic
2725
+ involutional
2726
+ anomaly
2727
+ trapped
2728
+ 0x1
2729
+ 0x2
2730
+ 16
2731
+ 1x1
2732
+ 1×2
2733
+ 16mm
2734
+ 24
2735
+ 6x
2736
+ 7x2
2737
+ 8×2
2738
+ bx
2739
+ bre
2740
+ cap
2741
+ dec
2742
+ es
2743
+ found
2744
+ fung
2745
+ hu
2746
+ jd
2747
+ king
2748
+ ls
2749
+ lin
2750
+ mou
2751
+ map
2752
+ n3m0
2753
+ od
2754
+ pen
2755
+ ped
2756
+ pontine
2757
+ ring
2758
+ rib
2759
+ tag
2760
+ tran
2761
+ whe
2762
+ wide
2763
+ ##ak
2764
+ ##ier
2765
+ ##ift
2766
+ ##iet
2767
+ ##ngeal
2768
+ ##nce
2769
+ ##ches
2770
+ ##droc
2771
+ ##sies
2772
+ ##pontine
2773
+ ##×6
2774
+ ##vant
2775
+ ##ales
2776
+ ##arent
2777
+ now
2778
+ ##tasis
2779
+ ##ectasis
2780
+ ##ged
2781
+ least
2782
+ ##igone
2783
+ ##ulous
2784
+ refer
2785
+ ##omolar
2786
+ oro
2787
+ conver
2788
+ span
2789
+ paramed
2790
+ pariet
2791
+ ##aceous
2792
+ altered
2793
+ ##ute
2794
+ retro
2795
+ retroph
2796
+ retromolar
2797
+ scanning
2798
+ clavicular
2799
+ def
2800
+ hydroc
2801
+ ##ullary
2802
+ ##iver
2803
+ ##agic
2804
+ absent
2805
+ prepontine
2806
+ lymphoma
2807
+ account
2808
+ staged
2809
+ ##imum
2810
+ pterygoids
2811
+ much
2812
+ thornwaldt
2813
+ atel
2814
+ apparent
2815
+ ##plied
2816
+ indetermin
2817
+ lacrimal
2818
+ minimum
2819
+ flat
2820
+ flair
2821
+ ##ization
2822
+ supplied
2823
+ normally
2824
+ clearly
2825
+ t1n3
2826
+ situated
2827
+ ##rowth
2828
+ ivim
2829
+ remarkable
2830
+ confines
2831
+ ##ets
2832
+ t4n0
2833
+ respective
2834
+ significantly
2835
+ content
2836
+ ##achment
2837
+ reticul
2838
+ spares
2839
+ veins
2840
+ ##x11mm
2841
+ trigone
2842
+ t2n3
2843
+ evident
2844
+ acute
2845
+ reduction
2846
+ favor
2847
+ outline
2848
+ favours
2849
+ presumed
2850
+ narrowed
2851
+ mediastinal
2852
+ obliteration
2853
+ haemorrhagic
2854
+ laryng
2855
+ anteromedial
2856
+ ##ephalus
2857
+ artifacts
2858
+ developmentally
2859
+ coales
2860
+ ##apping
2861
+ collaps
2862
+ series
2863
+ balloon
2864
+ balloons
2865
+ swelling
2866
+ excised
2867
+ deviated
2868
+ prolapse
2869
+ hampers
2870
+ widening
2871
+ ##occiput
2872
+ eccentric
2873
+ nearly
2874
+ clavicle
2875
+ insertion
2876
+ osteophytes
2877
+ circumferent
2878
+ pneumatization
2879
+ foreign
2880
+ ##ysm
2881
+ meatus
2882
+ thalamus
2883
+ determine
2884
+ obscure
2885
+ basiocciput
2886
+ weighted
2887
+ characteristics
2888
+ capitis
2889
+ huge
2890
+ mouth
2891
+ penetr
2892
+ tags
2893
+ trans
2894
+ whether
2895
+ converted
2896
+ paramedian
2897
+ parietal
2898
+ hydrocephalus
2899
+ 1x
2900
+ 1×3
2901
+ 27
2902
+ 29
2903
+ 2mm
2904
+ 2×3
2905
+ 30
2906
+ 5x
2907
+ 6x2
2908
+ 6x3
2909
+ 7×2
2910
+ 8x
2911
+ 8×3
2912
+ aort
2913
+ atroph
2914
+ bed
2915
+ bound
2916
+ basilar
2917
+ cs
2918
+ cal
2919
+ cre
2920
+ cen
2921
+ caps
2922
+ cest
2923
+ ele
2924
+ far
2925
+ ful
2926
+ fain
2927
+ flow
2928
+ function
2929
+ growth
2930
+ had
2931
+ hence
2932
+ lamina
2933
+ mixed
2934
+ oc
2935
+ sy
2936
+ sin
2937
+ te
2938
+ tn
2939
+ tim
2940
+ tra
2941
+ tort
2942
+ typical
2943
+ vs
2944
+ ×2
2945
+ ##eur
2946
+ ##eity
2947
+ ##mp
2948
+ ##gical
2949
+ ##che
2950
+ ##rit
2951
+ ##ximal
2952
+ ##de
2953
+ ##ded
2954
+ ##oad
2955
+ ##sal
2956
+ ##scribed
2957
+ ##uper
2958
+ ##pite
2959
+ ##pigin
2960
+ ##ptom
2961
+ ##ye
2962
+ ##×5
2963
+ ##5×3
2964
+ ##hel
2965
+ ##arch
2966
+ ##ass
2967
+ ##asinus
2968
+ ##ested
2969
+ ##orged
2970
+ ##atic
2971
+ ##itate
2972
+ ##itive
2973
+ ##aryngeal
2974
+ ##opharyng
2975
+ ##oses
2976
+ ##osterior
2977
+ ##osuper
2978
+ ##uma
2979
+ leptom
2980
+ ##iglot
2981
+ reac
2982
+ ##ish
2983
+ toler
2984
+ ##ilitate
2985
+ ##rive
2986
+ ##vex
2987
+ exact
2988
+ convex
2989
+ ##remely
2990
+ thre
2991
+ thyr
2992
+ thrive
2993
+ extremely
2994
+ ##thrit
2995
+ fors
2996
+ scm
2997
+ deb
2998
+ about
2999
+ ##udes
3000
+ ##endum
3001
+ prop
3002
+ ##oposterior
3003
+ before
3004
+ ann
3005
+ aneur
3006
+ hypopharyngeal
3007
+ apx
3008
+ accoun
3009
+ ##ucle
3010
+ lowest
3011
+ ##ongly
3012
+ atte
3013
+ abutt
3014
+ abutment
3015
+ sigmoid
3016
+ paranas
3017
+ ##verse
3018
+ shad
3019
+ shift
3020
+ asap
3021
+ ##ape
3022
+ search
3023
+ hyperint
3024
+ arthrit
3025
+ spreads
3026
+ feature
3027
+ histological
3028
+ extensively
3029
+ frond
3030
+ cleft
3031
+ ##standing
3032
+ centre
3033
+ mask
3034
+ masseter
3035
+ vault
3036
+ diagnoses
3037
+ imp
3038
+ impression
3039
+ heterogeneity
3040
+ unusually
3041
+ ##ached
3042
+ conglomerated
3043
+ ##ques
3044
+ longstanding
3045
+ assessed
3046
+ intrasinus
3047
+ ##x10mm
3048
+ degrade
3049
+ degrades
3050
+ ##uctive
3051
+ proximal
3052
+ containing
3053
+ t2n0m0
3054
+ strongly
3055
+ ##ediate
3056
+ superficially
3057
+ sternum
3058
+ 3n0m0
3059
+ occiput
3060
+ despite
3061
+ agg
3062
+ 1101
3063
+ fibrotic
3064
+ ##bedded
3065
+ expands
3066
+ amide
3067
+ cerebellum
3068
+ ##acement
3069
+ ganglion
3070
+ neuroma
3071
+ 2018
3072
+ t4n3m1
3073
+ t4n3bm0
3074
+ cheek
3075
+ t3n3bm0
3076
+ obliterating
3077
+ 4n3m0
3078
+ erod
3079
+ 180
3080
+ ##ollen
3081
+ encroachment
3082
+ artifactual
3083
+ embedded
3084
+ contacting
3085
+ week
3086
+ expansile
3087
+ circumscribed
3088
+ 2n1m0
3089
+ serpigin
3090
+ ##ciable
3091
+ blur
3092
+ swollen
3093
+ request
3094
+ requested
3095
+ reviewed
3096
+ excision
3097
+ attn
3098
+ palanti
3099
+ workup
3100
+ appreciated
3101
+ appreciable
3102
+ epr
3103
+ touches
3104
+ depth
3105
+ engorged
3106
+ addendum
3107
+ destructive
3108
+ consideration
3109
+ usually
3110
+ intermediate
3111
+ facilitate
3112
+ radi
3113
+ submucosal
3114
+ degrees
3115
+ homogenous
3116
+ essent
3117
+ pedunc
3118
+ ribs
3119
+ spanning
3120
+ defect
3121
+ respectively
3122
+ laryngopharynx
3123
+ ballooning
3124
+ penetrating
3125
+ transverse
3126
+ atrophic
3127
+ center
3128
+ capsule
3129
+ fully
3130
+ faint
3131
+ functional
3132
+ since
3133
+ trauma
3134
+ tortuous
3135
+ ##mpts
3136
+ ##osuperior
3137
+ reaction
3138
+ tolerate
3139
+ thyroglossal
3140
+ aneurysm
3141
+ accounting
3142
+ attempts
3143
+ hyperintensity
3144
+ arthritide
3145
+ serpiginous
3146
+ 0×3
3147
+ 1x2
3148
+ 23mm
3149
+ 34
3150
+ 33mm
3151
+ 3×4
3152
+ 4x1
3153
+ 46mm
3154
+ 50
3155
+ 5x2
3156
+ 5×2
3157
+ 5x3
3158
+ 6×3
3159
+ 7×1
3160
+ ble
3161
+ bif
3162
+ dor
3163
+ domin
3164
+ epic
3165
+ each
3166
+ eye
3167
+ fu
3168
+ ff
3169
+ fine
3170
+ hern
3171
+ lent
3172
+ lord
3173
+ liver
3174
+ m1
3175
+ mon
3176
+ morph
3177
+ mapping
3178
+ nucle
3179
+ pe
3180
+ pter
3181
+ pot
3182
+ ri
3183
+ rath
3184
+ syl
3185
+ sock
3186
+ tm
3187
+ ta
3188
+ targe
3189
+ uv
3190
+ vp
3191
+ var
3192
+ vis
3193
+ ##ein
3194
+ ##eper
3195
+ ##equ
3196
+ ##eved
3197
+ ##mus
3198
+ ##met
3199
+ ##iology
3200
+ ##ga
3201
+ ##gle
3202
+ ##goid
3203
+ ##ground
3204
+ ##cal
3205
+ ##con
3206
+ ##coma
3207
+ ##roid
3208
+ ##rade
3209
+ ##lar
3210
+ ##led
3211
+ ##lly
3212
+ ##lant
3213
+ ##xcc
3214
+ ##oe
3215
+ ##oin
3216
+ ##oax
3217
+ ##sum
3218
+ ##uvant
3219
+ ##tening
3220
+ ##tosis
3221
+ ##treatment
3222
+ ##pou
3223
+ ##posed
3224
+ ##hanc
3225
+ ##201
3226
+ ##form
3227
+ ##vian
3228
+ ##3x1
3229
+ ##zius
3230
+ ##ke
3231
+ ##ked
3232
+ ##known
3233
+ ##jec
3234
+ ##juvant
3235
+ ##ally
3236
+ ##arcoma
3237
+ ##onodular
3238
+ ##inos
3239
+ ##inodal
3240
+ inj
3241
+ insp
3242
+ ##ndib
3243
+ ##itongue
3244
+ ##itier
3245
+ ##enal
3246
+ ##ened
3247
+ ##enhanc
3248
+ ##ice
3249
+ ##ician
3250
+ isth
3251
+ ische
3252
+ ##osarcoma
3253
+ ##uminal
3254
+ ##eding
3255
+ ##lel
3256
+ nasoph
3257
+ ##ulf
3258
+ ##ulature
3259
+ rele
3260
+ ##ently
3261
+ ##ential
3262
+ ##entered
3263
+ ##trast
3264
+ ##riform
3265
+ ##abal
3266
+ ##abol
3267
+ unknown
3268
+ conc
3269
+ though
3270
+ spans
3271
+ spinos
3272
+ ##iform
3273
+ ##omandib
3274
+ sinusal
3275
+ ##ants
3276
+ t2fs
3277
+ corner
3278
+ ##ths
3279
+ caves
3280
+ scal
3281
+ ##ccal
3282
+ ##ensen
3283
+ ##ensatory
3284
+ notes
3285
+ here
3286
+ height
3287
+ retrog
3288
+ deline
3289
+ deeper
3290
+ hyoid
3291
+ stre
3292
+ stensen
3293
+ foraminal
3294
+ ##agment
3295
+ abs
3296
+ critier
3297
+ protu
3298
+ pretreatment
3299
+ belly
3300
+ cancer
3301
+ angle
3302
+ lympho
3303
+ lymphatic
3304
+ others
3305
+ techniques
3306
+ ##issated
3307
+ effacement
3308
+ ##ucting
3309
+ ##henoid
3310
+ atlant
3311
+ ##eps
3312
+ craniopharyng
3313
+ abutted
3314
+ adequ
3315
+ ##obe
3316
+ shun
3317
+ ##ood
3318
+ suboccip
3319
+ vertical
3320
+ ##ificial
3321
+ appt
3322
+ ##plant
3323
+ ##plate
3324
+ signals
3325
+ set
3326
+ sellar
3327
+ seeding
3328
+ hypertroph
3329
+ hypermet
3330
+ globe
3331
+ ##elf
3332
+ lack
3333
+ patulous
3334
+ compensatory
3335
+ clinoid
3336
+ clinician
3337
+ fragment
3338
+ slice
3339
+ presented
3340
+ largely
3341
+ superolateral
3342
+ superificial
3343
+ follows
3344
+ dimensional
3345
+ ##athyroid
3346
+ ##tained
3347
+ deeply
3348
+ greatest
3349
+ borders
3350
+ mature
3351
+ palsies
3352
+ perinodal
3353
+ rect
3354
+ repe
3355
+ ##ogenic
3356
+ ethmoids
3357
+ implant
3358
+ parts
3359
+ t4n0m0
3360
+ resection
3361
+ marginal
3362
+ grossly
3363
+ ##erence
3364
+ sheets
3365
+ focally
3366
+ obtained
3367
+ palatopharyngeal
3368
+ ##airment
3369
+ magna
3370
+ previously
3371
+ symmetrically
3372
+ ##x18mm
3373
+ tracheal
3374
+ trape
3375
+ portions
3376
+ projec
3377
+ jugulo
3378
+ pla
3379
+ surgical
3380
+ ##ressive
3381
+ endplate
3382
+ opacity
3383
+ opacities
3384
+ merging
3385
+ t2n2
3386
+ protein
3387
+ 12x
3388
+ hemitongue
3389
+ neoad
3390
+ obstructing
3391
+ 3n3m0
3392
+ ##ibrosarcoma
3393
+ condylar
3394
+ fna
3395
+ ##isphenoid
3396
+ background
3397
+ outpou
3398
+ consists
3399
+ localised
3400
+ indents
3401
+ better
3402
+ obviously
3403
+ majority
3404
+ 2015
3405
+ 2016
3406
+ itself
3407
+ t4n3b
3408
+ avm
3409
+ 4n2m0
3410
+ hypoenhanc
3411
+ segments
3412
+ occupy
3413
+ occupied
3414
+ occupies
3415
+ parenchyma
3416
+ 18mm
3417
+ demonstrated
3418
+ demonstrates
3419
+ anterolateral
3420
+ bilat
3421
+ t4n2m1
3422
+ 22mm
3423
+ 202
3424
+ cover
3425
+ wings
3426
+ contacts
3427
+ dermatof
3428
+ cisterna
3429
+ ischaemic
3430
+ basisphenoid
3431
+ confirmed
3432
+ blood
3433
+ runs
3434
+ deviation
3435
+ enters
3436
+ entering
3437
+ prolapsing
3438
+ indicate
3439
+ indicative
3440
+ palantini
3441
+ 2x0
3442
+ 2x4
3443
+ micr
3444
+ micro
3445
+ ##iations
3446
+ ##ferior
3447
+ protrusion
3448
+ protrudes
3449
+ ulceration
3450
+ 19mm
3451
+ touching
3452
+ engulf
3453
+ limited
3454
+ buccal
3455
+ paralaryngeal
3456
+ parallel
3457
+ makes
3458
+ making
3459
+ breach
3460
+ decre
3461
+ fungal
3462
+ lining
3463
+ atelectasis
3464
+ flattening
3465
+ reticulonodular
3466
+ coalesc
3467
+ collapse
3468
+ circumferential
3469
+ aortic
3470
+ bounded
3471
+ calc
3472
+ creeps
3473
+ time
3474
+ leptomeningeal
3475
+ proptosis
3476
+ paranasopharyngeal
3477
+ shadowing
3478
+ impairment
3479
+ aggressive
3480
+ blurring
3481
+ essentially
3482
+ peduncle
3483
+ blend
3484
+ dorsum
3485
+ dominant
3486
+ epicentered
3487
+ ffe
3488
+ lentiform
3489
+ lordosis
3490
+ months
3491
+ peg
3492
+ potential
3493
+ rathke
3494
+ sylvian
3495
+ tmj
3496
+ targeted
3497
+ uvula
3498
+ vari
3499
+ ##contrast
3500
+ ##oinferior
3501
+ ##oaxial
3502
+ inspissated
3503
+ isthmus
3504
+ ischemic
3505
+ spinosum
3506
+ ##omandibular
3507
+ retrograde
3508
+ delineate
3509
+ critieria
3510
+ protuber
3511
+ atlantoaxial
3512
+ craniopharyngioma
3513
+ adequately
3514
+ shunt
3515
+ suboccipital
3516
+ hypertrophied
3517
+ hypermetabol
3518
+ trapezius
3519
+ proteinaceous
3520
+ neoadjuvant
3521
+ outpouching
3522
+ hypoenhancing
3523
+ dermatofibrosarcoma
3524
+ 0x
3525
+ 07
3526
+ 08
3527
+ 0x3
3528
+ 0×1
3529
+ 1n
3530
+ 15
3531
+ 2b
3532
+ 25mm
3533
+ 26mm
3534
+ 27mm
3535
+ 23x1
3536
+ 3d
3537
+ 31
3538
+ 37
3539
+ 3×3
3540
+ 35mm
3541
+ 37mm
3542
+ 32mm
3543
+ 41
3544
+ 4th
3545
+ 401
3546
+ 4x3
3547
+ 42mm
3548
+ 5×5
3549
+ 6th
3550
+ 6x1
3551
+ 601
3552
+ 6×1
3553
+ 7×3
3554
+ 8x2
3555
+ 801
3556
+ 9x2
3557
+ age
3558
+ aug
3559
+ aet
3560
+ aqu
3561
+ bar
3562
+ bia
3563
+ blow
3564
+ breat
3565
+ best
3566
+ c7
3567
+ col
3568
+ cerv
3569
+ diss
3570
+ during
3571
+ done
3572
+ diver
3573
+ eb
3574
+ edent
3575
+ ect
3576
+ fo
3577
+ fas
3578
+ fil
3579
+ fusion
3580
+ fib
3581
+ hn
3582
+ hin
3583
+ hos
3584
+ kn
3585
+ lon
3586
+ lig
3587
+ last
3588
+ litt
3589
+ luminal
3590
+ my
3591
+ nor
3592
+ nause
3593
+ om
3594
+ ou
3595
+ prem
3596
+ pain
3597
+ past
3598
+ page
3599
+ pap
3600
+ phy
3601
+ pach
3602
+ pans
3603
+ pock
3604
+ pass
3605
+ qu
3606
+ ro
3607
+ renal
3608
+ sess
3609
+ symmetr
3610
+ ty
3611
+ tb
3612
+ val
3613
+ vic
3614
+ ventricular
3615
+ wit
3616
+ xi
3617
+ zy
3618
+ ##ms
3619
+ ##mun
3620
+ ##ae
3621
+ ##aic
3622
+ ##iph
3623
+ ##iom
3624
+ ##ily
3625
+ ##ioc
3626
+ ##ienc
3627
+ ##iating
3628
+ ##iectasis
3629
+ ##ieved
3630
+ ##nel
3631
+ ##nection
3632
+ ##cation
3633
+ ##ry
3634
+ ##ris
3635
+ ##ril
3636
+ ##rosis
3637
+ ##rup
3638
+ ##rants
3639
+ ##lr
3640
+ ##lab
3641
+ ##lies
3642
+ ##xon
3643
+ ##dit
3644
+ ##day
3645
+ ##ok
3646
+ ##ointense
3647
+ ##sew
3648
+ ##urem
3649
+ ##uity
3650
+ ##tis
3651
+ ##tled
3652
+ ##pe
3653
+ ##pc
3654
+ ##ple
3655
+ ##pered
3656
+ ##pital
3657
+ ##yep
3658
+ ##yst
3659
+ ##hing
3660
+ ##hond
3661
+ ##hord
3662
+ ##2x2
3663
+ ##ves
3664
+ ##13
3665
+ ##1b
3666
+ ##be
3667
+ ##bus
3668
+ ##baceous
3669
+ ##7×2
3670
+ ##9mm
3671
+ ##8x1
3672
+ then
3673
+ ##arm
3674
+ ##arngeal
3675
+ ##asion
3676
+ ##erian
3677
+ ##erted
3678
+ ##onding
3679
+ ##onch
3680
+ ##inity
3681
+ ##inting
3682
+ intern
3683
+ ##ora
3684
+ ##oroid
3685
+ ##orax
3686
+ ##oramina
3687
+ ##ata
3688
+ ##atine
3689
+ ##attered
3690
+ ##used
3691
+ ##itect
3692
+ ##ithel
3693
+ ##idus
3694
+ ##idging
3695
+ ##phy
3696
+ ##enital
3697
+ ##ica
3698
+ ##anal
3699
+ ##anic
3700
+ isointense
3701
+ ##ectr
3702
+ ##ectatic
3703
+ mega
3704
+ ##umour
3705
+ ##educt
3706
+ ##igation
3707
+ ##iguration
3708
+ ##leed
3709
+ nasopalatine
3710
+ ##ulked
3711
+ rever
3712
+ reached
3713
+ invest
3714
+ inverted
3715
+ leftwards
3716
+ ##isition
3717
+ ##om0
3718
+ ##ombus
3719
+ tumoural
3720
+ today
3721
+ ##ried
3722
+ ##veill
3723
+ ##perineural
3724
+ ##abial
3725
+ ##abet
3726
+ positive
3727
+ unable
3728
+ condition
3729
+ congest
3730
+ conse
3731
+ connection
3732
+ ##olist
3733
+ ##adural
3734
+ ##oustic
3735
+ thus
3736
+ parasellar
3737
+ parathyroid
3738
+ chord
3739
+ choroid
3740
+ ##ifying
3741
+ ##acuated
3742
+ ##inusitis
3743
+ ##ainage
3744
+ alread
3745
+ alone
3746
+ ##tate
3747
+ ##uted
3748
+ ##portion
3749
+ scop
3750
+ scap
3751
+ scattered
3752
+ regional
3753
+ ##am0
3754
+ ##ament
3755
+ ##urated
3756
+ ##urately
3757
+ ##urcation
3758
+ notoc
3759
+ ##ically
3760
+ distort
3761
+ pteryoid
3762
+ pterygo
3763
+ retrot
3764
+ retromaxillary
3765
+ retrieved
3766
+ midportion
3767
+ class
3768
+ headache
3769
+ level1b
3770
+ ##otopic
3771
+ sten
3772
+ stem
3773
+ standing
3774
+ ##aglot
3775
+ ##ending
3776
+ ##endym
3777
+ ##ymeningeal
3778
+ postcontrast
3779
+ ##opontine
3780
+ prev
3781
+ wallerian
3782
+ definitive
3783
+ april
3784
+ foramena
3785
+ accurately
3786
+ ##imposed
3787
+ ##mporomandibular
3788
+ measurem
3789
+ ##angiop
3790
+ thickened
3791
+ mucoc
3792
+ ##epithel
3793
+ ##ependym
3794
+ saturated
3795
+ mucositis
3796
+ ##ively
3797
+ mils
3798
+ ##illoma
3799
+ abutts
3800
+ ##obleed
3801
+ channel
3802
+ subtrac
3803
+ bulkier
3804
+ sebaceous
3805
+ arran
3806
+ aryep
3807
+ predominant
3808
+ dixon
3809
+ diabet
3810
+ suggestion
3811
+ 8thdit
3812
+ probabal
3813
+ ##ipidus
3814
+ ##hyoid
3815
+ commun
3816
+ ##ders
3817
+ whereas
3818
+ compr
3819
+ medullary
3820
+ ##actic
3821
+ supracl
3822
+ ##sem
3823
+ ##ayr
3824
+ musculature
3825
+ fold
3826
+ maybe
3827
+ superimposed
3828
+ lungs
3829
+ greatly
3830
+ t1nom0
3831
+ ##ualised
3832
+ encoun
3833
+ recurre
3834
+ recurrent
3835
+ wrapping
3836
+ thrombus
3837
+ adenopathy
3838
+ measured
3839
+ ethmoidal
3840
+ biopsies
3841
+ heterotopic
3842
+ clustered
3843
+ respect
3844
+ infiltrate
3845
+ overlies
3846
+ brach
3847
+ bronch
3848
+ bridging
3849
+ intracanal
3850
+ congenital
3851
+ intracranially
3852
+ reticular
3853
+ retension
3854
+ spare
3855
+ sheet
3856
+ ##athic
3857
+ approaches
3858
+ ##ectively
3859
+ brainlab
3860
+ ##quently
3861
+ ##quisition
3862
+ ##ortical
3863
+ ##ontoid
3864
+ tubular
3865
+ ##ticula
3866
+ v3perineural
3867
+ posterosuperior
3868
+ posteroinferior
3869
+ ##ucted
3870
+ proper
3871
+ pointing
3872
+ ##atively
3873
+ surveill
3874
+ occasion
3875
+ roundish
3876
+ opacifying
3877
+ additionally
3878
+ underg
3879
+ underde
3880
+ evacuated
3881
+ strap
3882
+ striated
3883
+ stranding
3884
+ ##x26mm
3885
+ forms
3886
+ advise
3887
+ lesser
3888
+ acoustic
3889
+ acquisition
3890
+ insipidus
3891
+ polyps
3892
+ 3n1
3893
+ configuration
3894
+ architect
3895
+ intraorbital
3896
+ ##oplatine
3897
+ 110
3898
+ raise
3899
+ rims
3900
+ thinning
3901
+ frankly
3902
+ consisting
3903
+ 13x1
3904
+ tornwaldt
3905
+ used
3906
+ supraglot
3907
+ continuation
3908
+ edn
3909
+ station
3910
+ subcortical
3911
+ tracking
3912
+ degeneration
3913
+ perivertebral
3914
+ cerebellopontine
3915
+ ductal
3916
+ hypoplasia
3917
+ orifices
3918
+ planes
3919
+ stripes
3920
+ neurof
3921
+ neurogenic
3922
+ 2013
3923
+ 2017
3924
+ ##hesis
3925
+ ##veloped
3926
+ avid
3927
+ chest
3928
+ ##ulae
3929
+ infraclavicular
3930
+ t3n3am0
3931
+ 4n2
3932
+ 4n1
3933
+ 4n0m0
3934
+ elsew
3935
+ electr
3936
+ meningoma
3937
+ meningitis
3938
+ masticatory
3939
+ replace
3940
+ replacing
3941
+ corresponding
3942
+ 3mmx
3943
+ dermis
3944
+ laryngeal
3945
+ warrants
3946
+ anteroposterior
3947
+ resultant
3948
+ 210
3949
+ 21mm
3950
+ units
3951
+ openings
3952
+ coil
3953
+ horn
3954
+ osteomeatal
3955
+ separated
3956
+ ##ympanic
3957
+ hemithorax
3958
+ cisterns
3959
+ prior
3960
+ 2n2m0
3961
+ 2n0m0
3962
+ collection
3963
+ collectively
3964
+ solitary
3965
+ symptom
3966
+ nasolabial
3967
+ periphery
3968
+ haemangiom
3969
+ cours
3970
+ hila
3971
+ limb
3972
+ atten
3973
+ indicating
3974
+ palpation
3975
+ palantine
3976
+ 9x5
3977
+ 9x4mm
3978
+ drainage
3979
+ hampered
3980
+ microc
3981
+ sulcal
3982
+ protruding
3983
+ ulcerating
3984
+ branching
3985
+ peripherally
3986
+ 7x4mm
3987
+ 8x13mm
3988
+ epiglot
3989
+ ecchond
3990
+ voids
3991
+ clavicles
3992
+ effects
3993
+ adducted
3994
+ sequelae
3995
+ 10x4mm
3996
+ 10x5mm
3997
+ needs
3998
+ destruction
3999
+ intermus
4000
+ osteophyte
4001
+ circumference
4002
+ limits
4003
+ 7x12mm
4004
+ 7x18mm
4005
+ buried
4006
+ facial
4007
+ individually
4008
+ submucosa
4009
+ degree
4010
+ homogeneous
4011
+ decom
4012
+ fungating
4013
+ liner
4014
+ odema
4015
+ odontoid
4016
+ ##akable
4017
+ accounts
4018
+ atelectatic
4019
+ indeterminant
4020
+ indeterminated
4021
+ t1n3a
4022
+ reticulation
4023
+ t2n3m
4024
+ t2n3bm0
4025
+ collapsed
4026
+ circumferentially
4027
+ 8x6mm
4028
+ csf
4029
+ elev
4030
+ element
4031
+ system
4032
+ temporomandibular
4033
+ tnm
4034
+ tnm0
4035
+ ##saliph
4036
+ ##heless
4037
+ ##iglottic
4038
+ convexity
4039
+ debris
4040
+ debulked
4041
+ apxlr
4042
+ erodes
4043
+ radiotherapy
4044
+ bifurcation
4045
+ herniations
4046
+ morphology
4047
+ nucleus
4048
+ ptergoid
4049
+ socket
4050
+ tapers
4051
+ visualised
4052
+ ##oele
4053
+ ##2013
4054
+ injection
4055
+ relevant
4056
+ concentric
4057
+ corners
4058
+ scalen
4059
+ stret
4060
+ absence
4061
+ lymphoepithel
4062
+ rectus
4063
+ repeat
4064
+ marginally
4065
+ projecting
4066
+ plaque
4067
+ 12x7mm
4068
+ 2022
4069
+ coverage
4070
+ microbleed
4071
+ microangiop
4072
+ engulfed
4073
+ coalesces
4074
+ calcified
4075
+ blends
4076
+ variant
4077
+ protuberance
4078
+ hypermetabolic
4079
+ aetiology
4080
+ aqueduct
4081
+ biapical
4082
+ blowout
4083
+ breathing
4084
+ cervic
4085
+ dissection
4086
+ diverticula
4087
+ ebv
4088
+ edentulous
4089
+ ectactic
4090
+ fibres
4091
+ hinders
4092
+ hospital
4093
+ longest
4094
+ ligament
4095
+ little
4096
+ myel
4097
+ nausea
4098
+ outer
4099
+ paget
4100
+ papilloma
4101
+ physaliph
4102
+ pachymeningeal
4103
+ pansinusitis
4104
+ root
4105
+ sessile
4106
+ symmetric
4107
+ type
4108
+ value
4109
+ vicinity
4110
+ xii
4111
+ zyg
4112
+ ##ysts
4113
+ ##hordal
4114
+ reversal
4115
+ investigation
4116
+ conditions
4117
+ consequently
4118
+ ##olisthesis
4119
+ chordoma
4120
+ already
4121
+ scope
4122
+ scapulae
4123
+ notochordal
4124
+ distorted
4125
+ retrotympanic
4126
+ classification
4127
+ measurement
4128
+ mucocoele
4129
+ ##ependymal
4130
+ subtraction
4131
+ aryepiglottic
4132
+ diabetes
4133
+ 8thditon
4134
+ communic
4135
+ encountered
4136
+ recurrence
4137
+ bronchiectasis
4138
+ surveillance
4139
+ occasionally
4140
+ underdeveloped
4141
+ architecture
4142
+ supraglottic
4143
+ neuroforamina
4144
+ elsewhere
4145
+ electronic
4146
+ symptoms
4147
+ haemangiomas
4148
+ microcysts
4149
+ epiglottis
4150
+ ecchondrosis
4151
+ lymphoepithelioma
4152
+ microangiopathic
4153
+ physaliphora
4154
+ 03
4155
+ 09
4156
+ 0m0
4157
+ 0mm
4158
+ 0×2
4159
+ 0×4
4160
+ 1a
4161
+ 1b
4162
+ 1×4
4163
+ 2m
4164
+ 2a
4165
+ 26
4166
+ 2×2
4167
+ 24mm
4168
+ 2x3
4169
+ 2×1
4170
+ 2m1
4171
+ 28mm
4172
+ 2×6
4173
+ 28x1
4174
+ 3x
4175
+ 32
4176
+ 35
4177
+ 39
4178
+ 38
4179
+ 3x1
4180
+ 3x2
4181
+ 3×2
4182
+ 34mm
4183
+ 3×1
4184
+ 30mm
4185
+ 3×6
4186
+ 4x
4187
+ 42
4188
+ 40
4189
+ 48
4190
+ 4×2
4191
+ 4×3
4192
+ 44mm
4193
+ 45mm
4194
+ 4×1
4195
+ 47mm
4196
+ 43mm
4197
+ 40mm
4198
+ 41mm
4199
+ 5a
4200
+ 5t
4201
+ 51
4202
+ 56
4203
+ 58
4204
+ 5×3
4205
+ 5×1
4206
+ 5×4
4207
+ 5tes
4208
+ 5×6
4209
+ 55×3
4210
+
4211
+ 60
4212
+ 65
4213
+ 64
4214
+ 68
4215
+ 61mm
4216
+ 6×6
4217
+ 6x11mm
4218
+ 6×5
4219
+ 6x10mm
4220
+ 7m
4221
+ 701
4222
+ 7×4
4223
+ 8×1
4224
+ 8×4
4225
+ 8×6
4226
+
4227
+ 90
4228
+ 99
4229
+ 901
4230
+ 9×2
4231
+ 9×3
4232
+ 9x3
4233
+ 9×5
4234
+ ae
4235
+ aid
4236
+ ahn
4237
+ aspir
4238
+ aver
4239
+ away
4240
+ bes
4241
+ bith
4242
+ bial
4243
+ bow
4244
+ bur
4245
+ buc
4246
+ bm0
4247
+ bap
4248
+ cn
4249
+ cat
4250
+ cri
4251
+ cant
4252
+ cut
4253
+ cres
4254
+ cur
4255
+ creat
4256
+ cathe
4257
+ ds
4258
+ did
4259
+ div
4260
+ doc
4261
+ day
4262
+ density
4263
+ dce
4264
+ data
4265
+ eg
4266
+ eas
4267
+ eral
4268
+ era
4269
+ est
4270
+ eber
4271
+ fd
4272
+ fal
4273
+ fer
4274
+ four
4275
+ fir
4276
+ fess
4277
+ fra
4278
+ filtr
4279
+ face
4280
+ fixed
4281
+ fift
4282
+ gamm
4283
+ gran
4284
+ hx
4285
+ ho
4286
+ hk
4287
+ hig
4288
+ hiv
4289
+ hand
4290
+ hong
4291
+ hilar
4292
+ hans
4293
+ hole
4294
+ i2
4295
+ iam
4296
+ ide
4297
+ iga
4298
+ jap
4299
+ ky
4300
+ kid
4301
+ kong
4302
+ ll
4303
+ lt
4304
+ lit
4305
+ light
4306
+ lab
4307
+ lay
4308
+ lod
4309
+ load
4310
+ mx
4311
+ md
4312
+ mul
4313
+ might
4314
+ mad
4315
+ mud
4316
+ miss
4317
+ mob
4318
+ mte
4319
+ mra
4320
+ mental
4321
+ myl
4322
+ meningeal
4323
+ mpc
4324
+ ns
4325
+ nk
4326
+ never
4327
+ nape
4328
+ oper
4329
+ pi
4330
+ pd
4331
+ ps
4332
+ py
4333
+ pf
4334
+ pad
4335
+ pte
4336
+ punc
4337
+ pell
4338
+ pyr
4339
+ pack
4340
+ ppos
4341
+ pending
4342
+ rp
4343
+ rar
4344
+ rig
4345
+ righ
4346
+ rent
4347
+ ross
4348
+ rud
4349
+ rap
4350
+ rind
4351
+ rises
4352
+ rumour
4353
+ sum
4354
+ sac
4355
+ sternal
4356
+ sate
4357
+ sep
4358
+ swi
4359
+ sized
4360
+ tx
4361
+ t0
4362
+ tre
4363
+ test
4364
+ term
4365
+ tak
4366
+ vc
4367
+ v1
4368
+ vas
4369
+ vom
4370
+ vir
4371
+ vasc
4372
+ vest
4373
+ vision
4374
+ will
4375
+ wald
4376
+ x3
4377
+ x1
4378
+ x4
4379
+ x6
4380
+ xap
4381
+ y1
4382
+ you
4383
+ ##ey
4384
+ ##eal
4385
+ ##eth
4386
+ ##eases
4387
+ ##mi
4388
+ ##mx
4389
+ ##mary
4390
+ ##more
4391
+ ##misp
4392
+ ##mixed
4393
+ ##aph
4394
+ ##ageal
4395
+ ##aug
4396
+ ##iag
4397
+ ##iment
4398
+ ##ired
4399
+ ##iosuperior
4400
+ ##nx
4401
+ ##nh
4402
+ ##n3
4403
+ ##n0
4404
+ ##nit
4405
+ ##num
4406
+ ##nial
4407
+ ##nch
4408
+ ##nants
4409
+ ##gion
4410
+ ##gopalatine
4411
+ ##gative
4412
+ ##gital
4413
+ ##gitis
4414
+ ##growth
4415
+ ##gye
4416
+ ##c2
4417
+ ##cent
4418
+ ##cular
4419
+ ##cav
4420
+ ##cend
4421
+ ##cess
4422
+ ##cence
4423
+ ##colog
4424
+ ##cked
4425
+ ##cica
4426
+ ##cuted
4427
+ ##rf
4428
+ ##ron
4429
+ ##rax
4430
+ ##rontal
4431
+ ##rosc
4432
+ ##rinates
4433
+ ##lph
4434
+ ##ling
4435
+ ##lis
4436
+ ##land
4437
+ ##x5mm
4438
+ ##x8x1
4439
+ ##dis
4440
+ ##dated
4441
+ ##dered
4442
+ ##diology
4443
+ ##oy
4444
+ ##oz
4445
+ ##oon
4446
+ ##oes
4447
+ ##oary
4448
+ ##oic
4449
+ ##oom
4450
+ ##otr
4451
+ ##oour
4452
+ ##orem
4453
+ ##oth
4454
+ ##ohyoid
4455
+ ##su
4456
+ ##sh
4457
+ ##sion
4458
+ ##sid
4459
+ ##sist
4460
+ ##sur
4461
+ ##sory
4462
+ ##sure
4463
+ ##sification
4464
+ ##sfs
4465
+ ##spers
4466
+ ##uate
4467
+ ##uation
4468
+ ##uff
4469
+ ##uish
4470
+ ##t3
4471
+ ##t1
4472
+ ##ten
4473
+ ##tist
4474
+ ##tment
4475
+ ##timal
4476
+ ##tology
4477
+ ##tak
4478
+ ##taic
4479
+ ##tumour
4480
+ ##theless
4481
+ ##tling
4482
+ ##pon
4483
+ ##ped
4484
+ ##pious
4485
+ ##plete
4486
+ ##pness
4487
+ ##yngeal
4488
+ ##ygoid
4489
+ ##hc
4490
+ ##hion
4491
+ ##hus
4492
+ ##han
4493
+ ##his
4494
+ ##haem
4495
+ ##fal
4496
+ ##fit
4497
+ ##fused
4498
+ ##var
4499
+ ##vil
4500
+ ##vance
4501
+ ##vascular
4502
+ ##3m
4503
+ ##3x26mm
4504
+ ##10
4505
+ ##14
4506
+ ##1x2
4507
+ ##1tumour
4508
+ ##05
4509
+ ##04
4510
+ ##06
4511
+ ##08
4512
+ ##0x1
4513
+ ##0×1
4514
+ ##5cm
4515
+ ##zy
4516
+ ##bar
4517
+ ##bre
4518
+ ##ball
4519
+ ##bness
4520
+ ##briform
4521
+ ##7×3
4522
+ ##ks
4523
+ ##6x1
4524
+ ##6x18mm
4525
+ ##98
4526
+ ##9x2
4527
+ ##9x10mm
4528
+ ##8x3
4529
+ ##jug
4530
+ ##hed
4531
+ ##heal
4532
+ ##held
4533
+ ##hemisp
4534
+ them
4535
+ thecal
4536
+ thems
4537
+ ##ale
4538
+ ##aluminal
4539
+ ##aring
4540
+ ##arding
4541
+ ##aract
4542
+ ##arted
4543
+ ##ar201
4544
+ ##arakable
4545
+ ##argye
4546
+ ##arpness
4547
+ ##astas
4548
+ ##renal
4549
+ ##ers
4550
+ ##ery
4551
+ ##erin
4552
+ ##erus
4553
+ ##ering
4554
+ ##erable
4555
+ ##erterm
4556
+ ##onpc
4557
+ ##inge
4558
+ ##inoid
4559
+ ##inine
4560
+ ##inated
4561
+ ##inuity
4562
+ ##inuate
4563
+ init
4564
+ inspec
4565
+ inspect
4566
+ inwards
4567
+ innum
4568
+ ingrowth
4569
+ ##ndering
4570
+ ##esor
4571
+ ##ester
4572
+ ##ortion
4573
+ ##oration
4574
+ ##oracic
4575
+ ##orudes
4576
+ ##ativ
4577
+ ##atomy
4578
+ ##atysm
4579
+ nov
4580
+ ##aryx
4581
+ ##ussion
4582
+ ##iting
4583
+ ##itud
4584
+ ##itple
4585
+ ##idal
4586
+ ##ides
4587
+ ##idum
4588
+ ##iderin
4589
+ ##phopharyngeal
4590
+ ##phosis
4591
+ ##enge
4592
+ ##enia
4593
+ ##enral
4594
+ ##icle
4595
+ ##icuous
4596
+ ##icienc
4597
+ ##anasal
4598
+ island
4599
+ ##osal
4600
+ ##osiderin
4601
+ ##teral
4602
+ means
4603
+ ##umul
4604
+ ##ument
4605
+ let
4606
+ leve
4607
+ leav
4608
+ leung
4609
+ ##edullary
4610
+ ##igest
4611
+ ##leted
4612
+ nasog
4613
+ nasphopharyngeal
4614
+ ##inguous
4615
+ ##ingled
4616
+ ##inguish
4617
+ ##uloma
4618
+ ##ulbar
4619
+ metastat
4620
+ metastaic
4621
+ refused
4622
+ rendering
4623
+ ##entim
4624
+ withheld
4625
+ rightt
4626
+ nasopharyneal
4627
+ nasopharyngitis
4628
+ ##ism
4629
+ ##isation
4630
+ ##isrup
4631
+ tumoour
4632
+ ##omost
4633
+ ##omises
4634
+ ##omatic
4635
+ ##omplete
4636
+ tof
4637
+ toc2
4638
+ oram
4639
+ ##ilities
4640
+ ##ilection
4641
+ necess
4642
+ ##pering
4643
+ ##perienc
4644
+ metastastic
4645
+ ##clar
4646
+ exit
4647
+ exotr
4648
+ experienc
4649
+ ##ablis
4650
+ updated
4651
+ uptak
4652
+ ##allenge
4653
+ t1rh
4654
+ union
4655
+ unav
4656
+ unrel
4657
+ unsh
4658
+ unbre
4659
+ consp
4660
+ conch
4661
+ t1wfs
4662
+ ##olester
4663
+ ##reman
4664
+ unremarakable
4665
+ ##owding
4666
+ spill
4667
+ spont
4668
+ spicul
4669
+ paracent
4670
+ carnial
4671
+ cardiology
4672
+ chun
4673
+ china
4674
+ challenge
4675
+ cholester
4676
+ nasopharynxl
4677
+ ##ossible
4678
+ ##ife
4679
+ ##ifically
4680
+ ##aced
4681
+ ##acial
4682
+ invasin
4683
+ altern
4684
+ alto
4685
+ involuted
4686
+ ##avity
4687
+ ##aviv
4688
+ ##avenous
4689
+ ##avily
4690
+ ##teriorly
4691
+ ##isting
4692
+ ##istax
4693
+ smok
4694
+ smalll
4695
+ smallish
4696
+ ##cine
4697
+ ##cinator
4698
+ t2a
4699
+ t2sfs
4700
+ cortic
4701
+ fossal
4702
+ jugulare
4703
+ inform
4704
+ infact
4705
+ ones
4706
+ onse
4707
+ oncolog
4708
+ cavum
4709
+ cavitary
4710
+ regarding
4711
+ corona
4712
+ intenral
4713
+ scaph
4714
+ ##ami
4715
+ ##amucos
4716
+ ##amidal
4717
+ who
4718
+ whose
4719
+ ##urs
4720
+ ##ury
4721
+ notably
4722
+ heart
4723
+ hearing
4724
+ heavily
4725
+ distance
4726
+ distortion
4727
+ distinguish
4728
+ pterygomax
4729
+ pterygoplatine
4730
+ retrob
4731
+ retropharyng
4732
+ retromandibular
4733
+ retrolisthesis
4734
+ midly
4735
+ midway
4736
+ midjug
4737
+ scanner
4738
+ ears
4739
+ earli
4740
+ heads
4741
+ ##heric
4742
+ depression
4743
+ delph
4744
+ dehis
4745
+ base0
4746
+ ##otomy
4747
+ ##inear
4748
+ ##ullar
4749
+ ##axillary
4750
+ paraest
4751
+ paraphy
4752
+ parafal
4753
+ styl
4754
+ start
4755
+ started
4756
+ ##ircles
4757
+ enucle
4758
+ ensu
4759
+ forament
4760
+ foramens
4761
+ abd
4762
+ able
4763
+ contrasting
4764
+ ##endent
4765
+ ##endage
4766
+ ##endosc
4767
+ crcl
4768
+ crowding
4769
+ prog
4770
+ prorudes
4771
+ prossible
4772
+ extended
4773
+ postsur
4774
+ ##opap
4775
+ ##opically
4776
+ ##optimal
4777
+ ##openia
4778
+ pretrac
4779
+ precontrast
4780
+ precav
4781
+ ##portance
4782
+ walled
4783
+ beli
4784
+ cana
4785
+ ant
4786
+ anatomy
4787
+ hypere
4788
+ ##cluder
4789
+ ##ands
4790
+ suspect
4791
+ suspious
4792
+ apt
4793
+ ##eninges
4794
+ techniquee
4795
+ clivis
4796
+ accesor
4797
+ accumul
4798
+ book
4799
+ final
4800
+ earlyt3
4801
+ staget1
4802
+ ##ucidum
4803
+ ##imet
4804
+ ##imural
4805
+ ##ibules
4806
+ sphenoe
4807
+ sphenoplatine
4808
+ ajc
4809
+ sphenoidale
4810
+ fissural
4811
+ saggital
4812
+ mucle
4813
+ mastoiditis
4814
+ mucosing
4815
+ miller
4816
+ craniof
4817
+ craniotomy
4818
+ mucosally
4819
+ ##illay
4820
+ admixed
4821
+ adrenal
4822
+ ##obed
4823
+ nonet
4824
+ ##oove
4825
+ asl
4826
+ asf
4827
+ subependymal
4828
+ subsid
4829
+ suboptimal
4830
+ lateraly
4831
+ laterality
4832
+ appoint
4833
+ appendage
4834
+ prominently
4835
+ ##play
4836
+ ##ploic
4837
+ larges
4838
+ index
4839
+ induced
4840
+ inderterm
4841
+ seem
4842
+ sets
4843
+ se10
4844
+ hyperost
4845
+ parotiditis
4846
+ predilection
4847
+ arises
4848
+ arae
4849
+ ##essory
4850
+ gls
4851
+ inferoan
4852
+ inferolateral
4853
+ inferoposterior
4854
+ inferomost
4855
+ inflammary
4856
+ die
4857
+ diploic
4858
+ indetermined
4859
+ ##elung
4860
+ ##elves
4861
+ appeared
4862
+ hyperplastic
4863
+ mok
4864
+ mode
4865
+ furtherr
4866
+ furthermore
4867
+ enhacement
4868
+ extracran
4869
+ vidial
4870
+ ##existing
4871
+ specifically
4872
+ composed
4873
+ completed
4874
+ suppress
4875
+ medal
4876
+ floors
4877
+ froz
4878
+ slit
4879
+ slip
4880
+ supraorbital
4881
+ suprahyoid
4882
+ disrup
4883
+ diseases
4884
+ display
4885
+ mar2013
4886
+ tumoral
4887
+ possibilities
4888
+ ##ayngeal
4889
+ multi
4890
+ muscosal
4891
+ centimet
4892
+ cricoary
4893
+ superoposterior
4894
+ difference
4895
+ cytology
4896
+ cartilages
4897
+ bordered
4898
+ bordering
4899
+ ##ostomy
4900
+ ##clivical
4901
+ match
4902
+ cranially
4903
+ changed
4904
+ t1no
4905
+ situ
4906
+ sited
4907
+ septal
4908
+ lobular
4909
+ persist
4910
+ perimural
4911
+ numbness
4912
+ numerus
4913
+ encirc
4914
+ encircles
4915
+ ##enmuller
4916
+ rosenmullar
4917
+ reconstr
4918
+ representing
4919
+ ##ometal
4920
+ remod
4921
+ remnants
4922
+ ##yrygoid
4923
+ ##thmoidal
4924
+ im14
4925
+ importance
4926
+ patch
4927
+ t4nm0
4928
+ otomastoids
4929
+ resected
4930
+ respon
4931
+ ##odigest
4932
+ ctb
4933
+ hazy
4934
+ sizes
4935
+ sizable
4936
+ sizeable
4937
+ marginated
4938
+ mainy
4939
+ cannon
4940
+ ##rovascular
4941
+ petct
4942
+ continguous
4943
+ ##ereved
4944
+ ##aching
4945
+ views
4946
+ viewed
4947
+ pressure
4948
+ presereved
4949
+ thank
4950
+ conglomerating
4951
+ locore
4952
+ ##entioned
4953
+ accesssory
4954
+ ##ximity
4955
+ ##llite
4956
+ accessoryy
4957
+ ##ophageal
4958
+ open
4959
+ opposed
4960
+ longer
4961
+ longitud
4962
+ petroclivical
4963
+ palati
4964
+ palatal
4965
+ palates
4966
+ extraparotid
4967
+ extramed
4968
+ extrathyroid
4969
+ extradural
4970
+ extramucos
4971
+ ##ontinuity
4972
+ tubinate
4973
+ tuberous
4974
+ tubrinates
4975
+ incomplete
4976
+ fascial
4977
+ intradural
4978
+ intraluminal
4979
+ intranasal
4980
+ intravenous
4981
+ ##x14mm
4982
+ ##x12mm
4983
+ ##x13x1
4984
+ ##x12x2
4985
+ ##x16x18mm
4986
+ turcica
4987
+ difficulty
4988
+ postero
4989
+ posteromedial
4990
+ ##ternoon
4991
+ undisrup
4992
+ prof
4993
+ proves
4994
+ proximity
4995
+ continue
4996
+ continues
4997
+ shortly
4998
+ pls
4999
+ platysm
5000
+ placed
5001
+ jugulodiag
5002
+ relativ
5003
+ retains
5004
+ tin0m0
5005
+ tinnit
5006
+ tin1tumour
5007
+ evaluated
5008
+ conglomerations
5009
+ occurs
5010
+ contained
5011
+ discussion
5012
+ discontinuity
5013
+ moderately
5014
+ 10cm
5015
+ 10x2
5016
+ 1001
5017
+ 10x11mm
5018
+ event
5019
+ striations
5020
+ strands
5021
+ ##x24mm
5022
+ ##x22x2
5023
+ ##x23x26mm
5024
+ ##x26x1
5025
+ ##x28x3
5026
+ incidenal
5027
+ incidentally
5028
+ pharyngo
5029
+ perforation
5030
+ 1201
5031
+ 12x11mm
5032
+ 12aug
5033
+ 12x13x1
5034
+ formation
5035
+ formamina
5036
+ scfs
5037
+ icas
5038
+ neural
5039
+ neither
5040
+ negative
5041
+ advised
5042
+ compressive
5043
+ mottled
5044
+ mottling
5045
+ endoscopically
5046
+ mechan
5047
+ ace
5048
+ acessory
5049
+ compare
5050
+ comparing
5051
+ comparatively
5052
+ compartment
5053
+ equivocally
5054
+ inside
5055
+ insuff
5056
+ insinuate
5057
+ ##×25×3
5058
+ ##×20×1
5059
+ ##regate
5060
+ obstrcuted
5061
+ 3n2
5062
+ ##×37×2
5063
+ cords
5064
+ aerodigest
5065
+ descend
5066
+ confused
5067
+ surrounded
5068
+ 11a
5069
+ 11cm
5070
+ 11x10mm
5071
+ fibroma
5072
+ raised
5073
+ thinned
5074
+ crossed
5075
+ haemosiderin
5076
+ extranodular
5077
+ 134
5078
+ 13cm
5079
+ 13x5mm
5080
+ 13x23x26mm
5081
+ localized
5082
+ tornwald
5083
+ contiguity
5084
+ indentation
5085
+ diameters
5086
+ continuing
5087
+ subcentim
5088
+ arterty
5089
+ presuming
5090
+ presumabal
5091
+ denervated
5092
+ became
5093
+ grade
5094
+ groove
5095
+ ##stemic
5096
+ ##aneously
5097
+ degenerated
5098
+ cerebrovascular
5099
+ cerebelli
5100
+ ducts
5101
+ simple
5102
+ interal
5103
+ interim
5104
+ interface
5105
+ interspers
5106
+ interhemisp
5107
+ grouping
5108
+ ppfs
5109
+ ganglioc
5110
+ auricular
5111
+ t3n2mx
5112
+ planum
5113
+ striping
5114
+ stripped
5115
+ neuro
5116
+ 2010
5117
+ 2014
5118
+ ##hesia
5119
+ ##orrhages
5120
+ nasoendosc
5121
+ t4n3a
5122
+ t4n3mi
5123
+ t4n3dis
5124
+ checked
5125
+ ##×15
5126
+ ##×17×2
5127
+ ##×17×3
5128
+ t3n3m
5129
+ obliterate
5130
+ confluence
5131
+ 4n1m0
5132
+ 4n3m
5133
+ goiter
5134
+ meninges
5135
+ mastication
5136
+ replaces
5137
+ ##omalacic
5138
+ developed
5139
+ development
5140
+ 1801
5141
+ 18x24mm
5142
+ mets
5143
+ anterosuperior
5144
+ anteroinferior
5145
+ anterolisthesis
5146
+ anteriosuperior
5147
+ encroaching
5148
+ results
5149
+ ##ephalic
5150
+ 212
5151
+ 2101
5152
+ 21x12mm
5153
+ bilobed
5154
+ cisternal
5155
+ chronicity
5156
+ differentiating
5157
+ t1n2c
5158
+ t4n2m
5159
+ structure
5160
+ structural
5161
+ 22x12x2
5162
+ 22×37×2
5163
+ 20x26mm
5164
+ 20x8x1
5165
+ 2005
5166
+ 20x14mm
5167
+ coexisting
5168
+ emphy
5169
+ ijc
5170
+ osteoma
5171
+ osteopenia
5172
+ osteometal
5173
+ separating
5174
+ lns1
5175
+ sellae
5176
+ basion
5177
+ basis
5178
+ gives
5179
+ ostium
5180
+ ##artment
5181
+ prelaryngeal
5182
+ antra
5183
+ confirmation
5184
+ 2n1
5185
+ 2n3m0
5186
+ colli
5187
+ later
5188
+ ser13
5189
+ ##×45×3
5190
+ pathway
5191
+ pathological
5192
+ combination
5193
+ tracheoes
5194
+ tracheostomy
5195
+ questioned
5196
+ aforem
5197
+ afternoon
5198
+ block
5199
+ bloom
5200
+ required
5201
+ deviating
5202
+ prolapses
5203
+ effaces
5204
+ effacing
5205
+ attachment
5206
+ attached
5207
+ indicates
5208
+ removal
5209
+ chemo
5210
+ chemort
5211
+ valleculae
5212
+ 14cm
5213
+ 14x10mm
5214
+ 2x5
5215
+ 2x6
5216
+ 9x4
5217
+ 9x7mm
5218
+ hamper
5219
+ macrosc
5220
+ molars
5221
+ osterior
5222
+ ossification
5223
+ wider
5224
+ widely
5225
+ widened
5226
+ ##neys
5227
+ ##tsxcc
5228
+ ##pressive
5229
+ encephalomalacic
5230
+ ulcerative
5231
+ benefit
5232
+ 17cm
5233
+ 1704
5234
+ 1998
5235
+ 7x5
5236
+ 7x4
5237
+ 7x5mm
5238
+ 7x8mm
5239
+ 8x15mm
5240
+ epistax
5241
+ joints
5242
+ pulse
5243
+ ##ixon
5244
+ ##omedullary
5245
+ depending
5246
+ dependent
5247
+ department
5248
+ adds
5249
+ comments
5250
+ t2n12m0
5251
+ 10x6mm
5252
+ 10x7mm
5253
+ 10x9x10mm
5254
+ needle
5255
+ insertions
5256
+ inserted
5257
+ destroy
5258
+ intermingled
5259
+ tracheaa
5260
+ dysprax
5261
+ pneumatised
5262
+ pneumatisation
5263
+ convincingly
5264
+ 25x18mm
5265
+ 25x26x1
5266
+ 2x1x1
5267
+ 9x1cm
5268
+ 9x15mm
5269
+ buy
5270
+ forearm
5271
+ radical
5272
+ radiation
5273
+ rays
5274
+ meati
5275
+ ##isions
5276
+ thalami
5277
+ t2bn3
5278
+ determined
5279
+ contours
5280
+ contouring
5281
+ obscures
5282
+ tsxapxcc
5283
+ ##ologically
5284
+ 16x11mm
5285
+ 16x18mm
5286
+ 1606
5287
+ 16x16x18mm
5288
+ 6x4
5289
+ 6x4mm
5290
+ 6x7mm
5291
+ 6x9mm
5292
+ 6x5cm
5293
+ breaches
5294
+ breached
5295
+ esrf
5296
+ odes
5297
+ pedicle
5298
+ ##aky
5299
+ referring
5300
+ retrophx
5301
+ retropharngeal
5302
+ retrophayr
5303
+ retrophargye
5304
+ retrophayngeal
5305
+ define
5306
+ accountable
5307
+ indeterminent
5308
+ t1n3m1
5309
+ contents
5310
+ favors
5311
+ laryngo
5312
+ coalesce
5313
+ coalescing
5314
+ ballooned
5315
+ obscured
5316
+ penetration
5317
+ transependymal
5318
+ 1x0
5319
+ 1x4
5320
+ 1x6
5321
+ 270
5322
+ 27x22x2
5323
+ 27×17×3
5324
+ 5x6
5325
+ 5x5mm
5326
+ 5x6mm
5327
+ 6x2mm
5328
+ 6x3mm
5329
+ 8x5mm
5330
+ aorta
5331
+ boundary
5332
+ csi
5333
+ csae
5334
+ calvar
5335
+ creeping
5336
+ ocular
5337
+ occluded
5338
+ occlude
5339
+ occluder
5340
+ synch
5341
+ systemic
5342
+ team
5343
+ teeth
5344
+ times
5345
+ ×21
5346
+ ##ched
5347
+ ##5×35
5348
+ leptomeninges
5349
+ propensity
5350
+ apxtsxcc
5351
+ paranasopharynx
5352
+ shadow
5353
+ histologically
5354
+ fronds
5355
+ impinge
5356
+ aggregate
5357
+ erode
5358
+ eroded
5359
+ weeks
5360
+ blurred
5361
+ radiating
5362
+ radiata
5363
+ homogenously
5364
+ essential
5365
+ pedunculated
5366
+ centering
5367
+ 34×17×2
5368
+ bifrontal
5369
+ eyeball
5370
+ herniation
5371
+ morphologically
5372
+ nuclei
5373
+ ptergopalatine
5374
+ sockets
5375
+ tapering
5376
+ visible
5377
+ injury
5378
+ nasopharngeal
5379
+ nasophayr
5380
+ nasopharyx
5381
+ relevance
5382
+ concavity
5383
+ scalp
5384
+ streaky
5385
+ abscess
5386
+ lymphoadenopathy
5387
+ setting
5388
+ settled
5389
+ fragments
5390
+ fragmented
5391
+ superolaterally
5392
+ rectum
5393
+ repeated
5394
+ projections
5395
+ plaques
5396
+ 12x8mm
5397
+ t4n3bm
5398
+ t4n3bm1
5399
+ 2021
5400
+ covering
5401
+ micropap
5402
+ microhaem
5403
+ protrusions
5404
+ engulfing
5405
+ decrease
5406
+ decreased
5407
+ decreasing
5408
+ coalescent
5409
+ calcification
5410
+ variable
5411
+ protuberans
5412
+ hypermetabolism
5413
+ outpouchings
5414
+ 0x0
5415
+ 0x4
5416
+ 1n1m0
5417
+ 1n3m0
5418
+ 15x11mm
5419
+ 23x13mm
5420
+ 23x11x2
5421
+ 41x28x3
5422
+ 5×5×4
5423
+ aug13
5424
+ coli
5425
+ colon
5426
+ foarm
5427
+ foreman
5428
+ fasica
5429
+ fashion
5430
+ filed
5431
+ films
5432
+ know
5433
+ knife
5434
+ ome
5435
+ premedullary
5436
+ premaxillary
5437
+ pocket
5438
+ pockets
5439
+ passes
5440
+ passing
5441
+ quite
5442
+ query
5443
+ ##iocephalic
5444
+ interna
5445
+ internatal
5446
+ congested
5447
+ congestive
5448
+ choroidal
5449
+ stenosis
5450
+ stenosed
5451
+ prevent
5452
+ channels
5453
+ arrange
5454
+ arranged
5455
+ probabale
5456
+ probabaly
5457
+ comprised
5458
+ compromises
5459
+ supraclinoid
5460
+ supraclaviv
5461
+ ##sema
5462
+ ##seminated
5463
+ brachial
5464
+ brachiocephalic
5465
+ intracanalicular
5466
+ undergo
5467
+ undergone
5468
+ 13x10x1
5469
+ 13x19x2
5470
+ avidly
5471
+ replacement
5472
+ 3mmx4mm
5473
+ 3mmx6mm
5474
+ coiling
5475
+ courses
5476
+ coursing
5477
+ limbs
5478
+ attenuated
5479
+ attenuation
5480
+ intermuscular
5481
+ intermusclar
5482
+ homogeneously
5483
+ decompression
5484
+ decompressive
5485
+ elevated
5486
+ elevates
5487
+ elements
5488
+ apxlrxcc
5489
+ scalene
5490
+ scalenus
5491
+ stretches
5492
+ stretched
5493
+ cervicoth
5494
+ cervicomedullary
5495
+ myelopathy
5496
+ myelomalacia
5497
+ zygoma
5498
+ zygomatic
5499
+ investigations
5500
+ communicate
5501
+ communication
5502
+ 26×15
5503
+ 28x15mm
5504
+ 3x0
5505
+ 4x5
5506
+ 42×25×3
5507
+ 40×20×1
5508
+ 5tesla
5509
+ 55×35×35
5510
+ 6×8
5511
+ 60×45×3
5512
+ 7mar201
5513
+ ahnh
5514
+ aspiration
5515
+ averaging
5516
+ besides
5517
+ bialteral
5518
+ bows
5519
+ burr
5520
+ buccinator
5521
+ baptist
5522
+ cataract
5523
+ cribriform
5524
+ canthus
5525
+ cuts
5526
+ crescent
5527
+ curvil
5528
+ creatinine
5529
+ catheter
5530
+ dsseminated
5531
+ divisions
5532
+ document
5533
+ easily
5534
+ eraly
5535
+ establis
5536
+ fdg
5537
+ falx
5538
+ ferry
5539
+ fourth
5540
+ first
5541
+ frail
5542
+ filtrated
5543
+ fifth
5544
+ gamma
5545
+ granuloma
5546
+ hkhc
5547
+ higher
5548
+ hanson
5549
+ ideally
5550
+ japan
5551
+ kyphosis
5552
+ kidneys
5553
+ layer
5554
+ lodes
5555
+ mdixon
5556
+ mulitple
5557
+ madelung
5558
+ missed
5559
+ mobile
5560
+ mteastas
5561
+ mylohyoid
5562
+ nsf
5563
+ nevertheless
5564
+ operative
5565
+ piriform
5566
+ psinal
5567
+ pyriform
5568
+ pfo
5569
+ pteyrygoid
5570
+ punctate
5571
+ pellucidum
5572
+ pyramidal
5573
+ packing
5574
+ pposterior
5575
+ rare
5576
+ rigth
5577
+ rentention
5578
+ rossenmuller
5579
+ rudiment
5580
+ rapid
5581
+ summary
5582
+ satellite
5583
+ septate
5584
+ treated
5585
+ tests
5586
+ terms
5587
+ taken
5588
+ vca
5589
+ vasogenic
5590
+ vomiting
5591
+ viral
5592
+ vasculature
5593
+ vestibules
5594
+ waldey
5595
+ ##nhancement
5596
+ ##gional
5597
+ ##ronous
5598
+ ##tenoid
5599
+ ##082
5600
+ themselves
5601
+ ##onpc082
5602
+ initial
5603
+ inspection
5604
+ inspected
5605
+ innumerable
5606
+ ##iciency
5607
+ levei
5608
+ leaving
5609
+ nasogastric
5610
+ metastataic
5611
+ oramen
5612
+ necessary
5613
+ exotropic
5614
+ experienced
5615
+ uptake
5616
+ t1rhonpc082
5617
+ unavailable
5618
+ unrelated
5619
+ unsharpness
5620
+ unbreakable
5621
+ conspicuous
5622
+ concha
5623
+ spills
5624
+ spontaneously
5625
+ spiculated
5626
+ paracentral
5627
+ chunks
5628
+ cholesterol
5629
+ alternatively
5630
+ altogether
5631
+ smoking
5632
+ cortices
5633
+ information
5634
+ onset
5635
+ oncologist
5636
+ scaphoid
5637
+ pterygomaxillay
5638
+ retrobulbar
5639
+ retropharyngx
5640
+ midjugular
5641
+ earlier
5642
+ delphian
5643
+ dehiscence
5644
+ paraesthesia
5645
+ paraphyyngeal
5646
+ parafalcine
5647
+ styloid
5648
+ enucleation
5649
+ ensuing
5650
+ progress
5651
+ postsurgical
5652
+ pretracheal
5653
+ precaval
5654
+ believed
5655
+ hyperenhancement
5656
+ accesorry
5657
+ accumulation
5658
+ staget1n0
5659
+ sphenoethmoidal
5660
+ craniofacial
5661
+ nonetheless
5662
+ subsiding
5663
+ appointment
5664
+ inderterminate
5665
+ seems
5666
+ se1001
5667
+ hyperostosis
5668
+ inferoanteriorly
5669
+ inferolaterally
5670
+ extracranial
5671
+ suppressed
5672
+ frozen
5673
+ disruption
5674
+ centimetre
5675
+ cricoarytenoid
5676
+ persistently
5677
+ encircle
5678
+ reconstruction
5679
+ remodelling
5680
+ response
5681
+ locoregional
5682
+ longitudinal
5683
+ extramedullary
5684
+ extramucosal
5685
+ undisrupted
5686
+ platysma
5687
+ jugulodiagastric
5688
+ relatives
5689
+ tinnitus
5690
+ 10x20mm
5691
+ 12aug2013
5692
+ 12x13x16mm
5693
+ mechanical
5694
+ insufficiency
5695
+ aerodigestive
5696
+ descends
5697
+ subcentimeter
5698
+ presumabaly
5699
+ interspersed
5700
+ interhemispheric
5701
+ gangliocapsular
5702
+ nasoendoscopy
5703
+ t4n3disease
5704
+ anteroinferiorly
5705
+ 22x12x20mm
5706
+ 22×37×26
5707
+ 20x8x16mm
5708
+ emphysema
5709
+ tracheoesophageal
5710
+ aforementioned
5711
+ blooming
5712
+ macroscopic
5713
+ epistaxis
5714
+ destroyed
5715
+ dyspraxia
5716
+ 25x26x19mm
5717
+ retrophayrngeal
5718
+ retrophargyeal
5719
+ 27x22x23mm
5720
+ 27×17×31
5721
+ calvarial
5722
+ synchronous
5723
+ impingement
5724
+ 34×17×25
5725
+ nasophayrnx
5726
+ micropapillary
5727
+ microhaemorrhages
5728
+ 23x11x23mm
5729
+ 41x28x36mm
5730
+ foarmen
5731
+ supraclavivular
5732
+ 13x10x15mm
5733
+ 13x19x22mm
5734
+ cervicothoracic
5735
+ 42×25×30
5736
+ 40×20×14
5737
+ 60×45×33
5738
+ 7mar2012
5739
+ curvilinear
5740
+ documented
5741
+ established
5742
+ mteastases
5743
+ rudimentary
5744
+ waldeyers
npc_bert_models/summary_module.py ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import AutoTokenizer, EncoderDecoderModel
2
+ from transformers import pipeline as hf_pipeline
3
+ from pathlib import Path
4
+
5
+
6
+ class NpcBertGPT2():
7
+
8
+ def __init__(self):
9
+ self.model = None
10
+ self.tokenizer = None
11
+ self.pipeline = None
12
+ # relative to app.py
13
+ self.pretrained_model = "./models/npc-bert-gpt2-best"
14
+
15
+ def load(self):
16
+ """Loads the fine-tuned EncoderDecoder model and related components.
17
+
18
+ This method initializes the model, tokenizer, and pipeline for the
19
+ report conclusion generation task using the pre-trained weights from the
20
+ specified directory.
21
+
22
+ Raises:
23
+ FileNotFoundError: If the pretrained model directory is not found.
24
+ """
25
+ if not Path(self.pretrained_model).is_dir():
26
+ raise FileNotFoundError(f"Cannot found pretrained model at: {self.pretrained_model}")
27
+
28
+ self.model = EncoderDecoderModel.from_pretrained(self.pretrained_model)
29
+ self.tokenizer = AutoTokenizer.from_pretrained(self.pretrained_model)
30
+ self.pipeline = hf_pipeline("text2text-generation",
31
+ model=self.model,
32
+ tokenizer=self.tokenizer,
33
+ device='cpu',
34
+ num_beams=4,
35
+ do_sample=True,
36
+ top_p = 0.92,
37
+ top_k = 0,
38
+ early_stopping=True,
39
+ no_repeat_ngram_size=2,
40
+ max_new_tokens=60)
41
+
42
+ def __call__(self, *args):
43
+ """Performs masked language modeling prediction.
44
+
45
+ This method should be called only after the `load` method has been executed
46
+ to ensure that the model and pipeline are properly initialized. It accepts
47
+ arguments to pass to the Hugging Face fill-mask pipeline.
48
+
49
+ Args:
50
+ *args: Variable length argument list to pass to the pipeline.
51
+
52
+ Returns:
53
+ The output of the fill-mask pipeline.
54
+
55
+ Raises:
56
+ BrokenPipeError: If the model has not been loaded before calling this method.
57
+ """
58
+ if self.pipeline is None:
59
+ msg = "Model was not initialized, have you run load()?"
60
+ raise BrokenPipeError(msg)
61
+ pipe_out, = self.pipeline(*args)
62
+
63
+ pipe_out = pipe_out['generated_text']
64
+ return pipe_out
65
+
report_examples_summary/NPC-report-1.txt ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ History
2
+ NPC for screening MRI
3
+
4
+ MRI Nasopharynx and Neck.
5
+ A full staging scan was performed in view of preliminary findings
6
+ Axial T1W
7
+ Coronal T2W
8
+ Axial T2 SPIR
9
+ Axial and coronal T1W post contrast
10
+ Axial T1W FS post contrast
11
+
12
+ REPORT:
13
+
14
+ Primary Tumour
15
+ There is a small primary nasopharyngeal carcinoma involving all walls, but predominantly the right side, of the nasopharynx.
16
+ The nasal cavity, oropharynx and parapharyngeal regions are unremarkable. There are small bilateral otomastoid effusions.
17
+ The skull base is unremarkable, except for a very small area of abnormal signal in the superior aspect of the clivus which is of uncertain significance. The paranasal sinuses are unremarkable.
18
+ The cavernous sinus and sections of the cranium included on the scan are unremarkable.
19
+
20
+ Nodal Metastases
21
+ There are a few metastatic right retropharyngeal nodes measuring up to 8mm in diameter as well as a couple of smaller left retropharyngeal nodes that are non specific. Shotty small nodes are seen in the remainder of the neck, which are not suspicious by MRI criteria.
22
+
report_examples_summary/NPC-report-2.txt ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MRI Nasopharynx and Neck.
2
+
3
+ Axial T1W
4
+ Coronal T2W
5
+ Axial T2 SPIR
6
+ Axial and coronal T1W post contrast
7
+
8
+ REPORT:
9
+
10
+ Primary Tumour
11
+ There is a nasopharyngeal carcinoma involving predominantly the right side   of the nasopharynx.
12
+ There is tumour extension into the right sided preclival muscles and early extension into the right parapharyngeal region. No tumour extension into the nasal cavity or oropharynx.
13
+ Early skull base invasion into the right pterygoid process is present and tumour involves the right pterygopalatine fossa and abuts the right foramen lacerum. There are minor mucosal inflammatory changes in the paranasal sinuses.
14
+ The cavernous sinus and sections of the cranium included on the scan are unremarkable.
15
+ There is a right middle ear and mastoid effusion.
16
+
17
+ Findings:
18
+ The nasal cavity and oropharynx are not involved.
19
+ The parapharyngeal regions are unremarkable and there are no middle ear or mastoid effusions.
20
+ The skull base is unremarkable.
21
+ The cavernous sinus and sections of the cranium included on the scan are unremarkable.
22
+
23
+ Distant metastases
24
+ No distant metastases or second primary tumours are identified in the head and neck, upper thorax or bones.
25
+
report_examples_summary/benign-report-1.txt ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ MRI Nasopharynx
2
+ Technique
3
+ Axial T1W and T2SPIR
4
+ Axial and coronal T1W post contrast
5
+
6
+ Report
7
+ A small focal area of mucosal thickening (depth approximately 8 mm) is present in the central portion of the superior roof of the nasopharynx which is only present on one slice and lies immediately below the skull base. In addition at this site there appears to be a defect just the right of the midline and it is uncertain whether this could be the site of a biopsy, please correlate clinically. The parapharyngeal regions are normal.
8
+ Several small unremarkable upper cervical lymph nodes are noted.
9
+
report_examples_summary/benign-report-2.txt ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MRI Nasopharynx
2
+
3
+ Technique
4
+ Screening protocol
5
+ Axial T1W and T2SPIR
6
+ Axial and coronal T1W post contrast
7
+
8
+ Report
9
+ There is very mild generalized thickening of the walls of the nasopharynx suggesting lymphoid hyperplasia.No nasopharyngeal carcinoma is identified.
10
+ The parapharyngeal regions are normal.
11
+ No cervical lymphadenopathy.
12
+ In addition there is greater thickening in the central roof in the region of the adenoid, which is mildly asymmetrical, but no definite nasopharyngeal carcinoma is identified.
13
+ Inflammatory mucosal thickening in the right maxillary sinus.
14
+ There is a borderline enlarged left retropharyngeal node and very small right retropharyngeal and upper cervical nodes but no nodes with any definite metastatic features are identified.
15
+ The remainder of the scan is unremarkable