Skip to content

Commit 4b31809

Browse files
committed
rename to gensys
1 parent e4ac286 commit 4b31809

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# intellect
1+
# Genesys
22

33

44
## install
55

66
```
7-
git clone git@github.com:PrimeIntellect-ai/intellect.git
7+
git clone git@github.com:Primegenesys-ai/genesys.git
88
uv sync --extra sglang
99
```
1010

@@ -13,7 +13,7 @@ uv sync --extra sglang
1313
This is a short run to test if the repo is installed correctly
1414

1515
```
16-
uv run python src/intellect/generate.py --name_model Qwen/Qwen2.5-Coder-0.5B --num_gpus 1 --batch_size 8 --max_samples 2
16+
uv run python src/genesys/generate.py --name_model Qwen/Qwen2.5-Coder-0.5B --num_gpus 1 --batch_size 8 --max_samples 2
1717
```
1818

1919
for dev setup:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "intellect"
2+
name = "genesys"
33
version = "0.1.0"
44
description = "AGI"
55
readme = "README.md"
File renamed without changes.

src/intellect/generate.py src/genesys/generate.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from datasets import load_dataset
55
from tqdm import tqdm
66
from transformers import AutoTokenizer
7-
from intellect.utils import repeat_elements, save_batch_results, verify_math_sample
7+
from genesys.utils import repeat_elements, save_batch_results, verify_math_sample
88

99
SYSTEM_PROMPT = "Solve the following math problem efficiently and clearly. Think carefully and step by step about your response and reason before providing a final response. Conclude your response with: \n\nTherefore, the final answer is: $\\boxed{answer}$. I hope it is correct.\n\nWhere [answer] is just the final number or expression that solves the problem. If the question is a multiple choice question, [answer] should be the letter indicating your correct response (e.g. \\text{A} or \\text{B})."
1010

@@ -23,7 +23,7 @@ def main(config: Config):
2323
llm = sgl.Engine(model_path=config.name_model, tp_size=config.num_gpus)
2424
tokenizer = AutoTokenizer.from_pretrained(config.name_model)
2525

26-
math_dataset = load_dataset("PrimeIntellect/NuminaMath-groundtruth")["train"]
26+
math_dataset = load_dataset("Primegenesys/NuminaMath-groundtruth")["train"]
2727
math_dataset = math_dataset.add_column("problem_id", range(len(math_dataset)))
2828

2929
sampling_params = dict(temperature=config.temperature, max_new_tokens=8192, stop=["<|eot_id|>"])
File renamed without changes.

tests/test_version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import intellect
1+
import genesys
22

33

44
def test_version():
5-
assert intellect.__version__ == "0.1.0"
5+
assert genesys.__version__ == "0.1.0"

uv.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)