Update README.md
Browse filesAdd Spanish and Chinese Examples.
README.md
CHANGED
@@ -3,6 +3,8 @@ license: llama3.1
|
|
3 |
base_model: meta-llama/Meta-Llama-3.1-8B
|
4 |
language:
|
5 |
- en
|
|
|
|
|
6 |
pipeline_tag: text2text-generation
|
7 |
---
|
8 |
|
@@ -61,17 +63,27 @@ AREA
|
|
61 |
\### Input: What is the area for the polygon? : 'Polygon ((-3.7515154 40.3855551, -3.7514972 40.3856581, -3.7507005 40.3855767, -3.7507167 40.3854722, -3.7515154 40.3855551))'
|
62 |
<p></p>
|
63 |
|
64 |
-
\###
|
|
|
65 |
|
|
|
|
|
|
|
|
|
66 |
<p></p>
|
|
|
67 |
CENTROID
|
68 |
<p></p>
|
69 |
|
70 |
\### Input: What is the centroid for the polygon? : 'Polygon ((-3.6934636 40.4808785, -3.6933352 40.4811486, -3.6930125 40.4810598, -3.693141 40.4807897, -3.6934636 40.4808785))'
|
71 |
<p></p>
|
72 |
|
73 |
-
\###
|
74 |
-
|
|
|
|
|
|
|
|
|
75 |
|
76 |
<p></p>
|
77 |
BUFFER
|
@@ -80,6 +92,12 @@ BUFFER
|
|
80 |
\### Input: What is the thousand meter buffer for the following point? : 'Point(-8.7522658 41.3862664)'
|
81 |
<p></p>
|
82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
\### Response: SELECT ST_AsText(ST_Buffer(geog, 1000)) as buffer FROM (select 'Point(-8.7522658 41.3862664)' :: geography geog) subquery;
|
84 |
|
85 |
<p></p>
|
@@ -89,6 +107,12 @@ LENGTH
|
|
89 |
\### Input: How long is the line? : 'LINESTRING (-3.6976693 40.4263178, -3.6986082 40.4258729)'
|
90 |
<p></p>
|
91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
\### Response: SELECT ST_Length(geog) As length FROM (select 'LINESTRING (-3.6976693 40.4263178, -3.6986082 40.4258729)' :: geography geog) subquery;
|
93 |
<p></p>
|
94 |
|
|
|
3 |
base_model: meta-llama/Meta-Llama-3.1-8B
|
4 |
language:
|
5 |
- en
|
6 |
+
- zh
|
7 |
+
- es
|
8 |
pipeline_tag: text2text-generation
|
9 |
---
|
10 |
|
|
|
63 |
\### Input: What is the area for the polygon? : 'Polygon ((-3.7515154 40.3855551, -3.7514972 40.3856581, -3.7507005 40.3855767, -3.7507167 40.3854722, -3.7515154 40.3855551))'
|
64 |
<p></p>
|
65 |
|
66 |
+
\### Input: ¿Cuál es el área para el polígono? : 'Polygon ((-3.7515154 40.3855551, -3.7514972 40.3856581, -3.7507005 40.3855767, -3.7507167 40.3854722, -3.7515154 40.3855551))'
|
67 |
+
<p></p>
|
68 |
|
69 |
+
\### Input: 多邊形的面積是多少? : 'Polygon ((-3.7515154 40.3855551, -3.7514972 40.3856581, -3.7507005 40.3855767, -3.7507167 40.3854722, -3.7515154 40.3855551))'
|
70 |
+
<p></p>
|
71 |
+
|
72 |
+
\### Response: SELECT ST_Area(geog) As area FROM (select 'Polygon ((-3.7515154 40.3855551, -3.7514972 40.3856581, -3.7507005 40.3855767, -3.7507167 40.3854722, -3.7515154 40.3855551))' :: geography geog) subquery;
|
73 |
<p></p>
|
74 |
+
|
75 |
CENTROID
|
76 |
<p></p>
|
77 |
|
78 |
\### Input: What is the centroid for the polygon? : 'Polygon ((-3.6934636 40.4808785, -3.6933352 40.4811486, -3.6930125 40.4810598, -3.693141 40.4807897, -3.6934636 40.4808785))'
|
79 |
<p></p>
|
80 |
|
81 |
+
\### Input: ¿Cuál es el centroide del polígono? : 'Polygon ((-3.6934636 40.4808785, -3.6933352 40.4811486, -3.6930125 40.4810598, -3.693141 40.4807897, -3.6934636 40.4808785))'
|
82 |
+
<p></p>
|
83 |
+
### Input: 多邊形的質心是什麼? : 'Polygon ((-3.6934636 40.4808785, -3.6933352 40.4811486, -3.6930125 40.4810598, -3.693141 40.4807897, -3.6934636 40.4808785))'
|
84 |
+
<p></p>
|
85 |
+
|
86 |
+
\### Response: SELECT ST_AsText(ST_Centroid(geog)) As centroid FROM (select 'Polygon ((-3.6934636 40.4808785, -3.6933352 40.4811486, -3.6930125 40.4810598, -3.693141 40.4807897, -3.6934636 40.4808785))' :: geography geog) subquery;
|
87 |
|
88 |
<p></p>
|
89 |
BUFFER
|
|
|
92 |
\### Input: What is the thousand meter buffer for the following point? : 'Point(-8.7522658 41.3862664)'
|
93 |
<p></p>
|
94 |
|
95 |
+
\### Input: ¿Cuál es el buffer de mil metros para lo siguiente punto? : 'Point(-8.7522658 41.3862664)'
|
96 |
+
<p></p>
|
97 |
+
|
98 |
+
\### Input: 以下點的千米緩衝區是多少? : 'Point(-8.7522658 41.3862664)'
|
99 |
+
<p></p>
|
100 |
+
|
101 |
\### Response: SELECT ST_AsText(ST_Buffer(geog, 1000)) as buffer FROM (select 'Point(-8.7522658 41.3862664)' :: geography geog) subquery;
|
102 |
|
103 |
<p></p>
|
|
|
107 |
\### Input: How long is the line? : 'LINESTRING (-3.6976693 40.4263178, -3.6986082 40.4258729)'
|
108 |
<p></p>
|
109 |
|
110 |
+
\### Input: ¿Cuánto dura la línea? : 'LINESTRING (-3.6976693 40.4263178, -3.6986082 40.4258729)'
|
111 |
+
<p></p>
|
112 |
+
|
113 |
+
\### Input: 隊伍有多長? : 'LINESTRING (-3.6976693 40.4263178, -3.6986082 40.4258729)'
|
114 |
+
<p></p>
|
115 |
+
|
116 |
\### Response: SELECT ST_Length(geog) As length FROM (select 'LINESTRING (-3.6976693 40.4263178, -3.6986082 40.4258729)' :: geography geog) subquery;
|
117 |
<p></p>
|
118 |
|