wanlilll commited on
Commit
252ab07
·
verified ·
1 Parent(s): d75a775

Update links to simplex-ai-inc org

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -19,7 +19,7 @@ library_name: transformers
19
 
20
  <p align="center">
21
  <a href="https://wanli-lee.github.io/LiteResearcher/">🌐 Project Page</a> •
22
- <a href="https://github.com/Wanli-Lee/LiteResearcher">💻 Code</a> •
23
  <a href="#">📄 Paper (Coming Soon)</a>
24
  </p>
25
 
@@ -59,7 +59,7 @@ The model uses `<think>`, `<tool_call>`, and `<answer>` tags to structure its re
59
  ### With the Inference Framework
60
 
61
  ```bash
62
- git clone https://github.com/Wanli-Lee/LiteResearcher.git
63
  cd LiteResearcher
64
  pip install -r requirements.txt
65
 
@@ -69,12 +69,12 @@ cp .env.example .env
69
 
70
  # Start SGLang server
71
  python -m sglang.launch_server \
72
- --model-path lev8-simplexai/LiteResearcher-4B \
73
  --port 6001 --tp 2
74
 
75
  # Run inference
76
  bash scripts/run_all.sh \
77
- --model lev8-simplexai/LiteResearcher-4B \
78
  --dataset data/example.jsonl
79
  ```
80
 
@@ -83,7 +83,7 @@ bash scripts/run_all.sh \
83
  ```python
84
  from transformers import AutoModelForCausalLM, AutoTokenizer
85
 
86
- model_name = "lev8-simplexai/LiteResearcher-4B"
87
  tokenizer = AutoTokenizer.from_pretrained(model_name)
88
  model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype="auto", device_map="auto")
89
 
 
19
 
20
  <p align="center">
21
  <a href="https://wanli-lee.github.io/LiteResearcher/">🌐 Project Page</a> •
22
+ <a href="https://github.com/simplex-ai-inc/LiteResearcher">💻 Code</a> •
23
  <a href="#">📄 Paper (Coming Soon)</a>
24
  </p>
25
 
 
59
  ### With the Inference Framework
60
 
61
  ```bash
62
+ git clone https://github.com/simplex-ai-inc/LiteResearcher.git
63
  cd LiteResearcher
64
  pip install -r requirements.txt
65
 
 
69
 
70
  # Start SGLang server
71
  python -m sglang.launch_server \
72
+ --model-path simplex-ai-inc/LiteResearcher-4B \
73
  --port 6001 --tp 2
74
 
75
  # Run inference
76
  bash scripts/run_all.sh \
77
+ --model simplex-ai-inc/LiteResearcher-4B \
78
  --dataset data/example.jsonl
79
  ```
80
 
 
83
  ```python
84
  from transformers import AutoModelForCausalLM, AutoTokenizer
85
 
86
+ model_name = "simplex-ai-inc/LiteResearcher-4B"
87
  tokenizer = AutoTokenizer.from_pretrained(model_name)
88
  model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype="auto", device_map="auto")
89