mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-25 17:10:42 +00:00
Add Word Hunt environment for training models on 4x4 letter grids
- Trie-based solver, official scoring, normalized rewards - Configurable token limit and detailed README with dictionary download link - Removes large Dictionary.txt from tracking and adds ignore rules - All tests pass and pre-commit hooks are clean
This commit is contained in:
parent
6604a2255b
commit
b5234d4214
9 changed files with 1214 additions and 0 deletions
9
environments/community/word_hunt/__init__.py
Normal file
9
environments/community/word_hunt/__init__.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
"""
|
||||
Word Hunt Environment Package
|
||||
"""
|
||||
|
||||
from .word_hunt_config import WordHuntEnvConfig
|
||||
from .word_hunt_env import WordHuntEnv
|
||||
from .word_hunt_solver import WordHuntSolver
|
||||
|
||||
__all__ = ["WordHuntEnv", "WordHuntEnvConfig", "WordHuntSolver"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue