Skip to content

Commit

Permalink
remove ws, reduce market point size
Browse files Browse the repository at this point in the history
  • Loading branch information
jesicasusanto committed Jun 5, 2023
1 parent 38cf23c commit d582549
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openadapt/strategies/mixins/sam.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def show_mask(mask, ax, random_color=False):
ax.imshow(mask_image)


def show_points(coords, labels, ax, marker_size=375):
def show_points(coords, labels, ax, marker_size=120):
pos_points = coords[labels == 1]
neg_points = coords[labels == 0]
ax.scatter(
Expand Down
2 changes: 1 addition & 1 deletion openadapt/strategies/naive.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_next_action_event(
if self.action_event_idx >= num_action_events:
# TODO: refactor
raise StopIteration()
action_event = action_events[self.action_event_idx]
action_event = action_events[self.action_event_idx]
if config.REPLAY_STRIP_ELEMENT_STATE:
action_event = utils.strip_element_state(action_event)
logger.info(
Expand Down

0 comments on commit d582549

Please sign in to comment.