markrodrigo commited on
Commit
9615628
1 Parent(s): 4155a8c

hypers and variations

Browse files
Files changed (1) hide show
  1. README.md +49 -0
README.md CHANGED
@@ -124,6 +124,55 @@ LENGTH
124
  \### Response: SELECT ST_Length(geog) As length FROM (select 'LINESTRING (-3.6976693 40.4263178, -3.6986082 40.4258729)' :: geography geog) subquery;
125
  <p></p>
126
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
  ### Framework versions
128
 
129
  - Transformers 4.45.1
 
124
  \### Response: SELECT ST_Length(geog) As length FROM (select 'LINESTRING (-3.6976693 40.4263178, -3.6986082 40.4258729)' :: geography geog) subquery;
125
  <p></p>
126
 
127
+ ### A Few Known Question Variation Examples
128
+
129
+ <p></p>
130
+ AREA
131
+ <p></p>
132
+ What is the area for the geometry?
133
+ <p></p>
134
+ What is the area for this polygon?
135
+ <p></p>
136
+ CENTROID
137
+ <p></p>
138
+ What is the centroid for the geometry?
139
+ <p></p>
140
+ What is the center point of the polygon?
141
+ <p></p>
142
+ BUFFER
143
+ <p></p>
144
+ What is the 100 meter buffer for the following point?
145
+ <p></p>
146
+ Buffer the following point a thousand meters.
147
+ <p></p>
148
+ What is the 1000 meter buffer for the following point?
149
+ <p></p>
150
+ LENGTH
151
+ <p></p>
152
+ What is the length of the line?
153
+ <p></p>
154
+ How long is this line?
155
+
156
+
157
+ ### llama.cpp / Hyperparameter Recommendations For Inference
158
+ max context ~ 8,000 or lower
159
+ <p></p>
160
+ top k ~ 100
161
+ <p></p>
162
+ temp ~ .4-.5 or lower
163
+
164
+ ### Agent Considerations
165
+ Agents are being considered as a separate project. Agents would mostly be related to pulling the coordinates from a mapping UI, and executing the SQL from responses against a PostGIS database.
166
+
167
+ ### Further Reference - link this
168
+ https://postgis.net/docs/manual-3.3/PostGIS_Special_Functions_Index.html#PostGIS_GeographyFunctions
169
+
170
+ ### Evaluation data
171
+ More information needed
172
+
173
+ ### Training data
174
+ Custom synthetic
175
+
176
  ### Framework versions
177
 
178
  - Transformers 4.45.1