yellowcap commited on
Commit
7a8ae32
·
verified ·
1 Parent(s): 597c30a

fix github link

Browse files
Files changed (1) hide show
  1. README.md +10 -2
README.md CHANGED
@@ -17,18 +17,21 @@ size_categories:
17
  # Gazet Dataset
18
 
19
  Synthetic training data for finetuning small language models on geospatial tasks over [Overture Maps](https://overturemaps.org/) and [Natural Earth](https://www.naturalearthdata.com/) parquet datasets.
20
-
21
  ## Tasks
22
 
23
  ### SQL generation (`sql/`)
 
24
  Input: user query + fuzzy-matched candidate entities (CSV)
25
  Output: DuckDB spatial SQL query
26
 
27
  ### Place extraction (`places/`)
 
28
  Input: natural language query
29
  Output: structured JSON with place names, country codes, and subtypes
30
 
31
  ## Format
 
32
  Each JSONL row is a conversation in chat-template format:
33
 
34
  ```json
@@ -42,6 +45,7 @@ Each JSONL row is a conversation in chat-template format:
42
  ```
43
 
44
  ## Splits
 
45
  | Task | Train | Val | Test |
46
  |---|---|---|---|
47
  | SQL | `sql/train.jsonl` | `sql/val.jsonl` | `sql/test.jsonl` |
@@ -50,8 +54,12 @@ Each JSONL row is a conversation in chat-template format:
50
  See `stats.json` for per-family sample counts.
51
 
52
  ## Generation
 
53
  Data is generated from SQL templates applied to real Overture/Natural Earth spatial relations (adjacency, containment, intersection, etc.). Templates produce both the training SQL and the natural language question.
54
- Full generation pipeline: `github.com/developmentseed/gazet/dataset`
 
 
 
55
 
56
  ## Trained model
57
  `developmentseed/gazet-model` - Qwen3.5-0.8B finetuned on this dataset
 
17
  # Gazet Dataset
18
 
19
  Synthetic training data for finetuning small language models on geospatial tasks over [Overture Maps](https://overturemaps.org/) and [Natural Earth](https://www.naturalearthdata.com/) parquet datasets.
20
+
21
  ## Tasks
22
 
23
  ### SQL generation (`sql/`)
24
+
25
  Input: user query + fuzzy-matched candidate entities (CSV)
26
  Output: DuckDB spatial SQL query
27
 
28
  ### Place extraction (`places/`)
29
+
30
  Input: natural language query
31
  Output: structured JSON with place names, country codes, and subtypes
32
 
33
  ## Format
34
+
35
  Each JSONL row is a conversation in chat-template format:
36
 
37
  ```json
 
45
  ```
46
 
47
  ## Splits
48
+
49
  | Task | Train | Val | Test |
50
  |---|---|---|---|
51
  | SQL | `sql/train.jsonl` | `sql/val.jsonl` | `sql/test.jsonl` |
 
54
  See `stats.json` for per-family sample counts.
55
 
56
  ## Generation
57
+
58
  Data is generated from SQL templates applied to real Overture/Natural Earth spatial relations (adjacency, containment, intersection, etc.). Templates produce both the training SQL and the natural language question.
59
+
60
+ ## Code & Development
61
+
62
+ This model was trained and evaluated using code in the [**developmentseed/gazet**](https://github.com/developmentseed/gazet) GitHub repository.
63
 
64
  ## Trained model
65
  `developmentseed/gazet-model` - Qwen3.5-0.8B finetuned on this dataset