mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-25 17:10:51 +00:00
Add ACRE(Abstract Causal REasoning Beyond Covariation) python generators (#199)
* Add acre python generators * acre: improved prompt & formatting of examples, support arbitrary sizes --------- Co-authored-by: Andreas Koepf <andreas.koepf@provisio.com>
This commit is contained in:
parent
e62b45d61c
commit
c8c3930797
6 changed files with 1152 additions and 4 deletions
15
reasoning_gym/induction/acre/const.py
Normal file
15
reasoning_gym/induction/acre/const.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
ONOFFOFF_MIN_POTENTIAL = 2
|
||||
ONOFFOFF_MAX_POTENTIAL = 3
|
||||
ONOFFOFF_MIN_NON = 3
|
||||
ONOFFOFF_MAX_NON = 5
|
||||
|
||||
ONONOFF_MIN_POTENTIAL = 2
|
||||
ONONOFF_MAX_POTENTIAL = 4
|
||||
ONONOFF_MIN_NON = 3
|
||||
ONONOFF_MAX_NON = 4
|
||||
|
||||
ATTR_CONFIG_SIZE = 24
|
||||
ALL_CONFIG_SIZE = 48
|
||||
Loading…
Add table
Add a link
Reference in a new issue