Text Generation
Transformers
Safetensors
English
qwen2
conversational
text-generation-inference
krogoldAI commited on
Commit
d9f7da7
·
verified ·
1 Parent(s): 751e4ae

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -21
README.md CHANGED
@@ -37,22 +37,20 @@ Model output:
37
  ```xml
38
  <query_analysis>
39
  <domain ambiguous="true">
40
- <candidate confidence="0.6">Biography</candidate>
41
- <candidate confidence="0.4">Factual Information</candidate>
42
  </domain>
43
  <intent ambiguous="true">
44
- <candidate confidence="0.7">Factual Question</candidate>
45
- <candidate confidence="0.3">Interpretation</candidate>
46
  </intent>
47
  <concepts>
48
  <explicit>mother</explicit>
 
49
  </concepts>
50
- <relations>
51
- <relation subject="mother" predicate="height" object="[PERSON]"/>
52
- </relations>
53
- <insufficient_context>false</insufficient_context>
54
  <rephrased>true</rephrased>
55
- <rephrased_query>Is [PERSON]'s mother tall?</rephrased_query>
56
  </query_analysis>
57
  ```
58
 
@@ -76,16 +74,16 @@ Model output:
76
  <candidate confidence="1.0">Data privacy and ethics</candidate>
77
  </intent>
78
  <concepts>
79
- <explicit>data gathering, language models</explicit>
80
- <implicit>legal considerations, ethical practices</implicit>
81
  </concepts>
82
  <relations>
83
  <relation subject="data gathering" predicate="must consider" object="legal aspects"/>
84
- <relation subject="language models" predicate="require" object="legal considerations"/>
85
  </relations>
86
  <insufficient_context>false</insufficient_context>
87
  <rephrased>true</rephrased>
88
- <rephrased_query>legal requirements for data collection and usage when developing natural language processing models</rephrased_query>
89
  </query_analysis>
90
  ```
91
 
@@ -96,27 +94,32 @@ Model output:
96
 
97
  User query:
98
 
99
- > How do they enhance its performance?
100
 
101
  Model output:
102
 
103
  ```xml
104
  <query_analysis>
105
  <domain ambiguous="true">
106
- <candidate confidence="0.5">Technology</candidate>
107
- <candidate confidence="0.5">Engineering</candidate>
108
  </domain>
109
  <intent ambiguous="true">
110
- <candidate confidence="0.6">Performance enhancement</candidate>
111
- <candidate confidence="0.4">Troubleshooting</candidate>
112
  </intent>
113
  <concepts>
114
- <explicit>performance</explicit>
115
- <implicit>[TECHNOLOGY/ENGINEERING] capabilities</implicit>
116
  </concepts>
 
 
 
 
 
117
  <insufficient_context>true</insufficient_context>
118
  <rephrased>true</rephrased>
119
- <rephrased_query>how do [TECHNOLOGY/ENGINEERING] enhancements improve [PRODUCT/SERVICE] performance</rephrased_query>
120
  </query_analysis>
121
  ```
122
 
 
37
  ```xml
38
  <query_analysis>
39
  <domain ambiguous="true">
40
+ <candidate confidence="0.5">Biography</candidate>
41
+ <candidate confidence="0.5">History</candidate>
42
  </domain>
43
  <intent ambiguous="true">
44
+ <candidate confidence="0.6">Factual question</candidate>
45
+ <candidate confidence="0.4">Definition lookup</candidate>
46
  </intent>
47
  <concepts>
48
  <explicit>mother</explicit>
49
+ <implicit>[PERSON]</implicit>
50
  </concepts>
51
+ <insufficient_context>true</insufficient_context>
 
 
 
52
  <rephrased>true</rephrased>
53
+ <rephrased_query>Was [PERSON]'s mother tall?</rephrased_query>
54
  </query_analysis>
55
  ```
56
 
 
74
  <candidate confidence="1.0">Data privacy and ethics</candidate>
75
  </intent>
76
  <concepts>
77
+ <explicit>data gathering, language models, legal aspects</explicit>
78
+ <implicit>data protection, data governance, ethical considerations</implicit>
79
  </concepts>
80
  <relations>
81
  <relation subject="data gathering" predicate="must consider" object="legal aspects"/>
82
+ <relation subject="language models" predicate="trained on" object="data gathered"/>
83
  </relations>
84
  <insufficient_context>false</insufficient_context>
85
  <rephrased>true</rephrased>
86
+ <rephrased_query>legal requirements for collecting and protecting sensitive data when training natural language processing (NLP) models</rephrased_query>
87
  </query_analysis>
88
  ```
89
 
 
94
 
95
  User query:
96
 
97
+ > How does she describe her emotional journey and the complexities of her interactions with him in that book?
98
 
99
  Model output:
100
 
101
  ```xml
102
  <query_analysis>
103
  <domain ambiguous="true">
104
+ <candidate confidence="0.5">Literature</candidate>
105
+ <candidate confidence="0.5">Psychology</candidate>
106
  </domain>
107
  <intent ambiguous="true">
108
+ <candidate confidence="0.6">Analysis</candidate>
109
+ <candidate confidence="0.4">Description</candidate>
110
  </intent>
111
  <concepts>
112
+ <explicit>emotional journey, interactions, book</explicit>
113
+ <implicit>[PERSON], complex</implicit>
114
  </concepts>
115
+ <relations>
116
+ <relation subject="[PERSON]" predicate="describe" object="emotional journey"/>
117
+ <relation subject="[PERSON]" predicate="interact with" object="him"/>
118
+ <relation subject="book" predicate="describe" object="[PERSON]'s journey and interactions"/>
119
+ </relations>
120
  <insufficient_context>true</insufficient_context>
121
  <rephrased>true</rephrased>
122
+ <rephrased_query>How does [PERSON] describe her emotional journey and the complexities of her interactions with [PERSON] in the book?</rephrased_query>
123
  </query_analysis>
124
  ```
125