ritvik360/nl2sql-bench
0
1.2├── check_quality.py3├── clean_dataset.py4├── client.py5├── custom_train.py6├── data_expander.py7├── data_factory8│ ├── augmentor.py9│ ├── config.py10│ ├── generate_data.py11│ ├── generator.py12│ ├── __init__.py13│ ├── pipeline.py14│ ├── run_data_factory.py15│ ├── schemas.py16│ ├── templates.py17│ └── validator.py18├── Dockerfile19├── edge_cases.jsonl20├── env_server21├── folder.txt22├── generate_data.py23├── generate_edge_cases.py24├── inference.py25├── __init__.py26├── llm_hybrid_templates.json27├── local_test.py28├── merge_model.py29├── mini_server.py30├── models.py31├── nl2sql_50k_elite_dataset_1.jsonl32├── nl2sql_50k_elite_dataset.jsonl33├── nl2sql_cleaned_ready_to_train.jsonl34├── nl2sql_merged_final.jsonl35├── openenv.yaml36├── pyproject.toml37├── qwen-7b-coder-nl2sql-grpo38│ ├── checkpoint-7039│ │ ├── adapter_config.json40│ │ ├── adapter_model.safetensors41│ │ ├── chat_template.jinja42│ │ ├── optimizer.pt43│ │ ├── README.md44│ │ ├── rng_state_0.pth45│ │ ├── rng_state_1.pth46│ │ ├── scheduler.pt47│ │ ├── tokenizer_config.json48│ │ ├── tokenizer.json49│ │ ├── trainer_state.json50│ │ └── training_args.bin51│ ├── final52│ │ ├── adapter_config.json53│ │ ├── adapter_model.safetensors54│ │ ├── chat_template.jinja55│ │ ├── README.md56│ │ ├── tokenizer_config.json57│ │ └── tokenizer.json58│ └── README.md59├── qwen-7b-coder-nl2sql-grpo-v260├── qwen-7b-nl2sql-merged61│ ├── chat_template.jinja62│ ├── config.json63│ ├── generation_config.json64│ ├── model.safetensors65│ ├── tokenizer_config.json66│ └── tokenizer.json67├── README.md68├── scripts69│ ├── run_local.sh70│ └── smoke_test.sh71├── server72│ ├── app.py73│ ├── db74│ │ ├── __init__.py75│ │ ├── schema.sql76│ │ └── seed.py77│ ├── environment.py78│ ├── grader.py79│ ├── __init__.py80│ ├── requirements.txt81│ └── tasks82│ ├── base.py83│ ├── easy.py84│ ├── hard.py85│ ├── __init__.py86│ └── medium.py87├── swapped_templates.json88├── tests89│ ├── conftest.py90│ ├── __init__.py91│ └── test_all.py92├── train.py93└── value_swapper.py94 9511 directories, 81 files96 