srmsoumya commited on
Commit
34d3598
·
verified ·
1 Parent(s): b3d564b

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ datasets:
4
+ - developmentseed/gazet-dataset
5
+ language:
6
+ - en
7
+ base_model:
8
+ - Qwen/Qwen3.5-0.8B
9
+ pipeline_tag: text-generation
10
+ ---
11
+
12
+ # Gazet Model
13
+
14
+ LoRA-finetuned [Qwen3.5-0.8B](https://huggingface.co/Qwen/Qwen3.5-0.8B) for natural-language geocoding over [Overture Maps](https://overturemaps.org/) and [Natural Earth](https://www.naturalearthdata.com/) parquet datasets.
15
+
16
+ Two tasks:
17
+ - **Place extraction**: Given a user query, extract structured place names with optional country codes and subtypes
18
+ - **Text-to-SQL**: Given a user query and fuzzy-matched candidate entities, generate a DuckDB spatial SQL query
19
+
20
+ ## Files
21
+
22
+ | File | Description |
23
+ |---|---|
24
+ | [ckpt-001.gguf](cci:7://file:///Users/srm/workdir/projects/devseed/gazet/finetune/models/qwen-base-v2/ckpt-001.gguf:0:0-0:0) | Q8_0 quantized GGUF (812 MB), ready for llama-server |
25
+ | [merged/](cci:9://file:///Users/srm/workdir/projects/devseed/gazet/finetune/models/qwen-base-run/merged:0:0-0:0) | Full merged safetensors (for re-quantization or further finetuning) |
26
+
27
+ ## Usage
28
+
29
+ Serve with [llama-server](https://github.com/ggml-org/llama.cpp):
30
+
31
+ ```bash
32
+ # Download
33
+ hf download developmentseed/gazet-model ckpt-001.gguf
34
+
35
+ # Serve
36
+ llama-server -m ckpt-001.gguf --port 9000 --ctx-size 2048