Text Generation
Transformers
Safetensors
English
qwen2
conversational
text-generation-inference
lllqaq commited on
Commit
5d9484d
·
verified ·
1 Parent(s): 24a27e6

Simplify usage section and point to GitHub repo

Browse files
Files changed (1) hide show
  1. README.md +6 -13
README.md CHANGED
@@ -52,21 +52,14 @@ Training recipe summary:
52
 
53
  ## Usage
54
 
55
- Transformers:
56
 
57
- ```python
58
- from transformers import AutoTokenizer, AutoModelForCausalLM
 
 
59
 
60
- model_id = "TIGER-Lab/SWE-Next-14B"
61
- tokenizer = AutoTokenizer.from_pretrained(model_id)
62
- model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="auto", device_map="auto")
63
- ```
64
-
65
- vLLM:
66
-
67
- ```bash
68
- vllm serve TIGER-Lab/SWE-Next-14B --served-model-name SWE-Next-14B --port 8000
69
- ```
70
 
71
  ## Relationship to the SWE-Next Release
72
 
 
52
 
53
  ## Usage
54
 
55
+ For full usage details, please refer to the official [SWE-Next GitHub repository](https://github.com/TIGER-AI-Lab/SWE-Next). The repository provides the complete setup and evaluation workflow for released models, including:
56
 
57
+ - environment and dependency installation,
58
+ - dataset and trajectory downloads,
59
+ - training configurations for the 7B and 14B models,
60
+ - vLLM serving commands and repository-level evaluation scripts.
61
 
62
+ In particular, the GitHub repo contains the exact commands used to serve SWE-Next-14B and evaluate it on SWE-Bench-style tasks under the SWE-Next execution interface.
 
 
 
 
 
 
 
 
 
63
 
64
  ## Relationship to the SWE-Next Release
65