HydraNet-WikiSQL icon indicating copy to clipboard operation
HydraNet-WikiSQL copied to clipboard

Code and trained model for Hybrid ranking network for text-to-SQL on WikiSQL

Results 3 HydraNet-WikiSQL issues
Sort by recently updated
recently updated
newest added

Bumps [transformers](https://github.com/huggingface/transformers) from 4.30.0 to 4.36.0. Release notes Sourced from transformers's releases. v4.36: Mixtral, Llava/BakLlava, SeamlessM4T v2, AMD ROCm, F.sdpa wide-spread support New model additions Mixtral Mixtral is the new...

dependencies

Hello, I would like to export my trained model to onnx model. Export Function call: dummy_input2 = torch.LongTensor(2, 2) dummy_input2.requires_grad = False torch.onnx.export(model.model, (dummy_input0, dummy_input1, dummy_input2), "Text-to-SQL.onnx", input_names = ["input_ids",...

Hello, is there any function or way to get a single sql query from a single question? Like run the trainend model on db-schema and a single question. Or is...