| """Reusable task generators used by scripts and experiments.""" | |
| from .associative_memory import make_associative_recall_task_tokens | |
| from .selective_recall import make_selective_copying_task_tokens | |
| __all__ = [ | |
| "make_associative_recall_task_tokens", | |
| "make_selective_copying_task_tokens", | |
| ] | |