Video-ORA-9B / code /orarl /__init__.py
lyhisme's picture
Add OraRL training and evaluation code
53c10a4 verified
Raw
History Blame Contribute Delete
369 Bytes
"""OraRL: oracle-augmented reinforcement learning for multimodal reasoning."""
from __future__ import annotations
from .resources import (
available_configs,
config_path,
documentation_path,
script_path,
)
__version__ = "0.1.0"
__all__ = [
"__version__",
"available_configs",
"config_path",
"documentation_path",
"script_path",
]