Video-ORA-4B / code /orarl /__init__.py
lyhisme's picture
Add 4B model card, benchmark assets, and release code
0185029 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",
]