Fix pylint issues

This commit is contained in:
doctorpangloss 2024-07-30 11:39:44 -07:00
parent 5ff6b64459
commit a94cd0b626
2 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,7 @@ class SPieceTokenizer:
return self._vocab
def __call__(self, string):
out = self.tokenizer.encode(string)
out = self.tokenizer.encode(string) # pylint: disable=no-member
return {"input_ids": out}
def serialize_model(self):

View File

@ -60,3 +60,4 @@ watchdog
PySoundFile
networkx>=2.6.3
joblib
jaxtyping