How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "anonymous192837192873/GraphGen-14b"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "anonymous192837192873/GraphGen-14b",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker
docker model run hf.co/anonymous192837192873/GraphGen-14b
Quick Links

GraphGen-14b

Anonymous submission accompanying a conference paper.

Fine-tuned from Qwen/Qwen2.5-Coder-14B-Instruct on the companion GraphGen dataset to generate multi-agent workflow configurations from natural-language queries.

Quick start

from transformers import AutoModelForCausalLM, AutoTokenizer

repo = "anonymus192837192873/GraphGen-14b"
tok = AutoTokenizer.from_pretrained(repo)
model = AutoModelForCausalLM.from_pretrained(repo, torch_dtype="bfloat16", device_map="auto")

Notes

Released for anonymous peer review. Author and affiliation information is intentionally withheld.

Downloads last month
22
Safetensors
Model size
15B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for anonymous192837192873/GraphGen-14b

Base model

Qwen/Qwen2.5-14B
Finetuned
(119)
this model
Quantizations
1 model

Collection including anonymous192837192873/GraphGen-14b