Text Generation
Transformers
Safetensors
English
gpt_neox
code
sql
chat
q&a
text-generation-inference
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("namelessai/sql-small")
model = AutoModelForCausalLM.from_pretrained("namelessai/sql-small")Quick Links
This model is trained to generate SQL queries and answer questions about them.
- Downloads last month
- 11
Model tree for namelessai/sql-small
Base model
EleutherAI/pythia-1.4b-deduped
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="namelessai/sql-small")