File size: 298 Bytes
1cd8a52 | 1 2 3 4 5 6 7 8 9 10 | """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",
]
|