Address feedbacks

This commit is contained in:
abdulhakeem 2025-01-25 17:56:00 -06:00
parent 57bce84577
commit ff2969d793

View file

@ -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?