Skip to content

Commit

Permalink
chore: reformat files
Browse files Browse the repository at this point in the history
  • Loading branch information
thetawom committed May 22, 2024
1 parent 1686157 commit a83cae3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions mabby/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* configure environments with custom arm spaces and rewards distributions
* collect and visualize simulation metrics like regret and optimality
"""

from mabby.agent import Agent
from mabby.arms import Arm, BernoulliArm, GaussianArm
from mabby.bandit import Bandit
Expand Down
1 change: 1 addition & 0 deletions mabby/stats.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provides metric tracking for multi-armed bandit simulations."""

from __future__ import annotations

from collections.abc import Iterable
Expand Down
1 change: 1 addition & 0 deletions mabby/strategies/ucb.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provides implementations of upper confidence bound (UCB) strategies."""

from __future__ import annotations

import numpy as np
Expand Down
1 change: 1 addition & 0 deletions mabby/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Provides commonly used utility functions."""

from __future__ import annotations

import numpy as np
Expand Down

0 comments on commit a83cae3

Please sign in to comment.