ethan1115's picture
Upload folder using huggingface_hub
0161e74 verified
"""Adaptive prompt selection via FOCUS-inspired multi-armed bandit."""
try:
from .cell_bandit import CellBandit
from .adaptive_prompt import adaptive_prompt_selection, run_baseline, setup_cell_arms
except ImportError:
from cell_bandit import CellBandit
from adaptive_prompt import adaptive_prompt_selection, run_baseline, setup_cell_arms
__all__ = ["CellBandit", "adaptive_prompt_selection", "run_baseline", "setup_cell_arms"]