@@ -163,24 +163,24 @@ Here you can find various conversational AI tasks as examples and can train mult
163163in simple steps mentioned in the notebooks.
164164
165165### Example-1 Intent detection, NER, Fragment detection
166-
167- ** Intent Detection**
166+ * (Setup : Multi-task , Task type : Multiple) *
167+ ** Intent Detection(Task type : Single sentence classification) **
168168
169169```
170170 Query: I need a reservation for a bar in bangladesh on feb the 11th 2032
171171
172172 Intent: BookRestaurant
173173```
174174
175- ** NER**
175+ ** NER (Task type : sequence labelling) **
176176
177177```
178178Query: ['book', 'a', 'spot', 'for', 'ten', 'at', 'a', 'top-rated', 'caucasian', 'restaurant', 'not', 'far', 'from', 'selmer']
179179
180180NER tags: ['O', 'O', 'O', 'O', 'B-party_size_number', 'O', 'O', 'B-sort', 'B-cuisine', 'B-restaurant_type', 'B-spatial_relation', 'I-spatial_relation', 'O', 'B-city']
181181```
182182
183- ** Fragment Detection**
183+ ** Fragment Detection (Task type : single sentence classification) **
184184
185185```
186186Query: a reservation for
@@ -195,6 +195,7 @@ Label: fragment
195195** Tasks file** :- [ tasks_file_snips] ( https://github.com/hellohaptik/multi-task-NLP/blob/master/examples/intent_ner_fragment/tasks_file_snips.yml )
196196
197197### Example-2 Entailment detection
198+ * (Setup : single-task , Task type : sentence pair classification)*
198199
199200```
200201Query1: An old man with a package poses in front of an advertisement.
@@ -220,6 +221,7 @@ Label: non-entailment
220221
221222
222223### Example-3 Answerability detection
224+ * (Setup : single-task , Task type : sentence pair classification)*
223225
224226```
225227Query: how much money did evander holyfield make
@@ -235,6 +237,7 @@ Label: answerable
235237** Tasks file** :- [ tasks_file_answerability] ( https://github.com/hellohaptik/multi-task-NLP/tree/master/examples/answerability_detection/tasks_file_answerability.yml )
236238
237239### Example-4 Query type detection
240+ * (Setup : single-task , Task type : single sentence classification)*
238241
239242```
240243Query: what's the distance between destin florida and birmingham alabama?
@@ -254,6 +257,7 @@ Label: PERSON
254257** Tasks file** :- [ tasks_file_querytype] ( https://github.com/hellohaptik/multi-task-NLP/blob/master/examples/query_type_detection/tasks_file_querytype.yml )
255258
256259### Example-5 POS tagging, NER tagging
260+ * (Setup : Multi-task , Task type : sequence labelling)*
257261
258262```
259263Query: ['Despite', 'winning', 'the', 'Asian', 'Games', 'title', 'two', 'years', 'ago', ',', 'Uzbekistan', 'are', 'in', 'the', 'finals', 'as', 'outsiders', '.']
@@ -271,6 +275,7 @@ POS tags: ['I-PP', 'I-VP', 'I-NP', 'I-NP', 'I-NP', 'I-NP', 'B-NP', 'I-NP', 'I-AD
271275** Tasks file** :- [ tasks_file_conll] ( https://github.com/hellohaptik/multi-task-NLP/blob/master/examples/ner_pos_tagging/tasks_file_conll.yml )
272276
273277## Example-6 Query correctness
278+ * (Setup : single-task , Task type : single sentence classification)*
274279
275280```
276281
@@ -292,6 +297,7 @@ Label: not well-formed
292297
293298
294299## Example-7 Query similarity
300+ * (Setup : single-task , Task type : single sentence classification)*
295301
296302```
297303
@@ -315,6 +321,7 @@ Label: similar
315321** Tasks file** :- [ tasks_file_qqp] ( https://github.com/hellohaptik/multi-task-NLP/blob/master/examples/query_pair_similarity/tasks_file_query_qqp.yml )
316322
317323## Example-8 Sentiment Analysis
324+ * (Setup : single-task , Task type : single sentence classification)*
318325
319326```
320327
0 commit comments