mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-28 17:29:39 +00:00
feat: Add leg counting imports and exports to arithmetic package
This commit is contained in:
parent
f8219a7a6a
commit
b8c69aa89f
1 changed files with 5 additions and 1 deletions
|
|
@ -1,9 +1,13 @@
|
||||||
from .chain_sum import ChainSum, ChainSumConfig
|
from .chain_sum import ChainSum, ChainSumConfig
|
||||||
from .basic_arithmetic import ArithmeticDataset, ArithmeticDatasetConfig
|
from .basic_arithmetic import ArithmeticDataset, ArithmeticDatasetConfig
|
||||||
|
from .leg_counting import LegCountingConfig, LegCountingDataset, leg_counting_dataset
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"ChainSum",
|
"ChainSum",
|
||||||
"ChainSumConfig",
|
"ChainSumConfig",
|
||||||
"ArithmeticDataset",
|
"ArithmeticDataset",
|
||||||
"ArithmeticDatasetConfig"
|
"ArithmeticDatasetConfig",
|
||||||
|
"LegCountingConfig",
|
||||||
|
"LegCountingDataset",
|
||||||
|
"leg_counting_dataset"
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue