
generate-dataset-synth
by rusmirbecirovic
SKILL.md
name: generate-dataset-synth description: Instructions for generating synthetic airline data with Synth CLI and loading it into SQLite.
Synth Data Generation
When the user wants to generate synthetic data, do not run raw synth commands. Use the included Python script which handles generation, JSON processing, and database loading automatically.
Prerequisites
-
Synth CLI must be installed: Run
synth versionto verify.- If not installed, use
@install-synthagent or run:python3 .github/skills/install-synth/install_synth.py
- If not installed, use
-
Database must be initialized: Run
make db-initif tables don't exist.
Standard Generation Procedure
Run the following commands in order:
-
Navigate to Project Root:
cd airline-discount-ml -
Run the Generation Script: This script generates data using Synth, processes the JSON, and loads it into SQLite.
python3 ../.github/skills/generate-dataset-synth/run_synth.pyWith custom record count (default is 100 per table):
python3 ../.github/skills/generate-dataset-synth/run_synth.py --count 500Generate only (no database load):
python3 ../.github/skills/generate-dataset-synth/run_synth.py --no-load -
Verify Data:
sqlite3 data/airline_discount.db "SELECT COUNT(*) FROM passengers;" sqlite3 data/airline_discount.db "SELECT COUNT(*) FROM routes;" sqlite3 data/airline_discount.db "SELECT COUNT(*) FROM discounts;"
Synth Models Location
The Synth schema files are located in:
airline-discount-ml/synth_models/airline_data/
├── passengers.json # Passenger profiles with travel history
├── routes.json # Flight routes with origin/destination/distance
└── discounts.json # Discount records linking passengers to routes
Generated Data Schema
passengers
| Column | Type | Description |
|---|---|---|
| id | INTEGER | Primary key |
| name | TEXT | Faker-generated name |
| travel_history | TEXT | JSON with trips count and total_spend |
routes
| Column | Type | Description |
|---|---|---|
| id | INTEGER | Primary key |
| origin | TEXT | 3-letter airport code |
| destination | TEXT | 3-letter airport code |
| distance | REAL | Distance in miles |
discounts
| Column | Type | Description |
|---|---|---|
| id | INTEGER | Primary key |
| passenger_id | INTEGER | FK to passengers |
| route_id | INTEGER | FK to routes |
| discount_value | REAL | Discount percentage |
Troubleshooting
synth: command not found
- Run
@install-synthor install manually per SKILL.md in install-synth.
"no such table" error
- Run
make db-initto create tables first.
JSON parse errors
- Ensure Synth version is 0.6.9 (
synth version). - Check that synth_models/*.json files are valid JSON.
スコア
総合スコア
リポジトリの品質指標に基づく評価
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
レビュー
レビュー機能は近日公開予定です