mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-27 17:23:19 +00:00
Address feedbacks
This commit is contained in:
parent
57bce84577
commit
ff2969d793
1 changed files with 10 additions and 6 deletions
16
README.md
16
README.md
|
|
@ -4,7 +4,7 @@ We are building a python library of procedural dataset generators and algorithmi
|
|||
|
||||
The goal is to generate virtually infinite data with adjustable complexity.
|
||||
|
||||
### Set up
|
||||
### Set up for development
|
||||
1. Clone the project
|
||||
```
|
||||
git clone https://github.com/open-thought/reasoning-gym.git
|
||||
|
|
@ -14,14 +14,18 @@ git clone https://github.com/open-thought/reasoning-gym.git
|
|||
conda create --name reasoning_gym python=3.12 -y
|
||||
conda activate reasoning_gym
|
||||
```
|
||||
3. Run the `requirements-dev.txt` file
|
||||
3. Link project and install dependencies
|
||||
```
|
||||
pip install -r requirements.txt
|
||||
pip install -e .
|
||||
```
|
||||
4. Install and run poetry to bring in other dependencies(`sympy` etc.)
|
||||
4. Install development dependencies
|
||||
```
|
||||
conda install -c conda-forge poetry
|
||||
poetry install
|
||||
pip install -r requirements-dev.txt
|
||||
```
|
||||
|
||||
>NOTE: To consume the APIs in reasoning_gym, just install from pip using the following
|
||||
```
|
||||
pip install reasoning-gym
|
||||
```
|
||||
|
||||
### How to instantiate a task dataset?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue