"vscode:/vscode.git/clone" did not exist on "dbf19582dc66636d96fdecb1947e744d6df3d9f3"
Commit 785153f6 authored by haileyschoelkopf's avatar haileyschoelkopf
Browse files

fix greedy_until abstractmethod

parent f8342178
...@@ -96,7 +96,7 @@ class LM(abc.ABC): ...@@ -96,7 +96,7 @@ class LM(abc.ABC):
# TODO: Add an optional max length # TODO: Add an optional max length
@abc.abstractmethod @abc.abstractmethod
def greedy_until(self, requests) -> List[str]: def generate_until(self, requests) -> List[str]:
"""Generate greedily until a stopping sequence """Generate greedily until a stopping sequence
:param requests: list[Instance] :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