Views
No views yet
AGENDA ITEM: Transportation Infrastructure Amendment
ACTION: Council approved 9-2 a $4.7 million amendment to the Colfax Avenue
repaving contract. Councilmembers Gilmore and Sawyer dissented, citing concerns
about cost overruns. Work is expected to begin in May and complete by September.
Residents along the corridor may experience lane closures during construction.The council approved a $4.7 million addition to the Colfax Avenue repaving
contract, with most members in favor. Two councilmembers voted against it,
worried the project is already going over budget.
Residents near Colfax Avenue should expect lane closures from May through
September while construction is underway.| Property | Value |
|---|---|
| Base model | SmolLM2-1.7B-Instruct |
| Fine-tuning method | LoRA (8 layers) |
| Training iterations | 500 |
| Training examples | 919 (80/10/10 split) |
| Data sources | Chicago, Seattle, Denver, Phoenix, Detroit, Oakland (Legistar API) + NYC and SF PDFs |
| Synthetic pairs generated by | Claude Haiku (claude-haiku-4-5-20251001) |
| Hardware | Apple M1, 16GB unified memory |
| Peak training memory | 8.228 GB |
| Final val loss | 1.106 |
| Final train loss | 0.641 |
| Inference memory | ~3.6 GB |
1from mlx_lm import load, generate
2
3model, tokenizer = load("Brandi-Kinard/civicdigest-smollm2-1.7b")
4
5minutes = """
6AGENDA ITEM: Mandatory Housing Affordability Amendment
7ACTION: The Land Use Committee voted 5-0 to recommend expanding MHA requirements
8to 12 additional urban village zones. Developers will be required to include 7%
9affordable units or pay an in-lieu fee of $32.75 per square foot.
10Public comment period closes May 15th.
11"""
12
13prompt = f"### Meeting Minutes:\n{minutes}\n\n### Summary:"
14response = generate(model, tokenizer, prompt=prompt, max_tokens=300)
15print(response)