File size: 806 Bytes
4405897
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
license: apache-2.0
library_name: transformers
pipeline_tag: text-generation
tags:
  - anonymous-submission
  - graphgen
  - fine-tuned
base_model: Qwen/Qwen2.5-Coder-14B-Instruct
---

# 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

```python
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.