Instructions to use ansumanpandey/codgen-finetuned-SQLQueryGeneration with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ansumanpandey/codgen-finetuned-SQLQueryGeneration with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ansumanpandey/codgen-finetuned-SQLQueryGeneration")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("ansumanpandey/codgen-finetuned-SQLQueryGeneration") model = AutoModelForCausalLM.from_pretrained("ansumanpandey/codgen-finetuned-SQLQueryGeneration") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use ansumanpandey/codgen-finetuned-SQLQueryGeneration with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ansumanpandey/codgen-finetuned-SQLQueryGeneration" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ansumanpandey/codgen-finetuned-SQLQueryGeneration", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/ansumanpandey/codgen-finetuned-SQLQueryGeneration
- SGLang
How to use ansumanpandey/codgen-finetuned-SQLQueryGeneration with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ansumanpandey/codgen-finetuned-SQLQueryGeneration" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ansumanpandey/codgen-finetuned-SQLQueryGeneration", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "ansumanpandey/codgen-finetuned-SQLQueryGeneration" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ansumanpandey/codgen-finetuned-SQLQueryGeneration", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use ansumanpandey/codgen-finetuned-SQLQueryGeneration with Docker Model Runner:
docker model run hf.co/ansumanpandey/codgen-finetuned-SQLQueryGeneration
Update README.md
Browse files
README.md
CHANGED
|
@@ -30,20 +30,6 @@ This model is intended for the automatic generation of SQL queries from descript
|
|
| 30 |
This model can be used with the Hugging Face Transformers library. Here is a quick example:
|
| 31 |
|
| 32 |
***************************
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
tokenizer = AutoTokenizer.from_pretrained("ansumanpandey/codgen-finetuned-SQLQueryGeneration")
|
| 37 |
-
model = AutoModelForCausalLM.from_pretrained("ansumanpandey/codgen-finetuned-SQLQueryGeneration")
|
| 38 |
-
|
| 39 |
-
def get_sql(query):
|
| 40 |
-
input_text = "Write a SQL query to %s </s>" % query
|
| 41 |
-
features = tokenizer([input_text], return_tensors='pt')
|
| 42 |
-
|
| 43 |
-
output = model.generate(input_ids=features['input_ids'],
|
| 44 |
-
attention_mask=features['attention_mask'],
|
| 45 |
-
max_new_tokens=70)
|
| 46 |
-
sql_query= tokenizer.decode(output[0])
|
| 47 |
-
return sql_query
|
| 48 |
-
|
| 49 |
***************************
|
|
|
|
| 30 |
This model can be used with the Hugging Face Transformers library. Here is a quick example:
|
| 31 |
|
| 32 |
***************************
|
| 33 |
+
The link:
|
| 34 |
+
https://huggingface.co/ansumanpandey/codgen-finetuned-SQLQueryGeneration/blob/main/The%20SQL%20Generation%20Code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
***************************
|