krogoldAI commited on
Commit
460006b
·
verified ·
1 Parent(s): fe49aa0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md CHANGED
@@ -45,6 +45,34 @@ The model generates structured XML analyses following a specific schema that inc
45
 
46
  The rephrasing capability focuses on retrieval optimization rather than query answering. The model transforms queries by using specific terminology likely to appear in relevant documents, expanding acronyms when contextually appropriate, adding disambiguating context, and making implicit references explicit through placeholder notation such as `[PERSON]` or `[COMPANY]`. Importantly, the model has learned to preserve already-optimal queries unchanged, recognizing when rephrasing would not improve retrieval effectiveness.
47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  ## Limitations and Considerations
49
 
50
  As a 0.5B parameter model, Rephraser-0.5B-v0.1-SFT prioritizes efficiency and deployability over the capabilities of larger language models. While it performs well on the types of queries represented in its training distribution, performance may degrade on highly specialized domains, multilingual queries, or query types significantly different from the training examples. The model focuses exclusively on English-language queries and has been optimized for the specific XML output format defined in its training.
 
45
 
46
  The rephrasing capability focuses on retrieval optimization rather than query answering. The model transforms queries by using specific terminology likely to appear in relevant documents, expanding acronyms when contextually appropriate, adding disambiguating context, and making implicit references explicit through placeholder notation such as `[PERSON]` or `[COMPANY]`. Importantly, the model has learned to preserve already-optimal queries unchanged, recognizing when rephrasing would not improve retrieval effectiveness.
47
 
48
+ The default output schema is the following:
49
+
50
+ ```xml
51
+ <query_analysis>
52
+ <domain ambiguous="true|false">
53
+ <candidate confidence="X.X">...</candidate>
54
+ </domain>
55
+ <intent ambiguous="true|false">
56
+ <candidate confidence="X.X">...</candidate>
57
+ </intent>
58
+ <!-- Optional sections -->
59
+ <concepts>
60
+ <explicit>...</explicit>
61
+ <implicit>...</implicit>
62
+ </concepts>
63
+ <relations>
64
+ <relation subject="..." predicate="..." object="..."/>
65
+ </relations>
66
+ <normalized_terms>
67
+ <term original="..." normalized="..."/>
68
+ </normalized_terms>
69
+ <!-- End optional sections -->
70
+ <insufficient_context>true|false</insufficient_context>
71
+ <rephrased>true|false</rephrased>
72
+ <rephrased_query>...</rephrased_query>
73
+ </query_analysis>
74
+ ```
75
+
76
  ## Limitations and Considerations
77
 
78
  As a 0.5B parameter model, Rephraser-0.5B-v0.1-SFT prioritizes efficiency and deployability over the capabilities of larger language models. While it performs well on the types of queries represented in its training distribution, performance may degrade on highly specialized domains, multilingual queries, or query types significantly different from the training examples. The model focuses exclusively on English-language queries and has been optimized for the specific XML output format defined in its training.