Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions openevolve/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -1067,8 +1067,8 @@ def _is_novel(self, program_id: int, island_idx: int) -> bool:
other = self.programs[pid]

if other.embedding is None:
logger.log(
"Warning: Program %s has no embedding, skipping similarity check", other.id
logger.warning(
f"Program {other.id} has no embedding, skipping similarity check"
)
continue

Expand Down