Commit 785153f6 authored by haileyschoelkopf's avatar haileyschoelkopf
Browse files

fix greedy_until abstractmethod

parent f8342178
......@@ -96,7 +96,7 @@ class LM(abc.ABC):
# TODO: Add an optional max length
@abc.abstractmethod
def greedy_until(self, requests) -> List[str]:
def generate_until(self, requests) -> List[str]:
"""Generate greedily until a stopping sequence
:param requests: list[Instance]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment